Hi Dears,
I have problem with understanding limma results while it doesn't have any column show rawnames(ID_REF). when I use the argument "row.names = TRUE" I get this error:
Error in write.table(tab, file = file, quote = FALSE, row.names = FALSE, :
formal argument "row.names" matched by multiple actual arguments
I will be really grateful if someone help me to resolve my problem.
Thank you
If you want to store your row names in an
ID_REF
column, you can do:... and then call
write.fit
as before. You can't do this by specifyingrow.names
because the argument has already been set internally bywrite.fit
when it callswrite.table
, which leads to the error message that you've observed.