Good afternoon,
I'm facing an issue with R. I have a dataframe with some genes, some of them are "n/a", I successfully changed "n/a" to "unknown" using the code: genes[is.na(genes)] <- "unknown"
Now I want to create a graph but I need unique ID for "unknown", as "unknown1", "unknown2" etc.
How can I instruct rstudio to do that progressing numbering of "unknown"?
Thank you in advance
Caveat: This will lead to names of the form "unknown"," unknown.1", ... If you absolutely need the first unknown to be named unknown.1 you need to do something else.
Thank you very much! It worked perfectly
Thank you very much, I'm gonna try. Will this keep the names of the other genes that I already have? Because only some of the rows are "unknown", for other I am fine with the gene name.
If you use this code, any duplicated name in your rownames will be treated like this. Also, non-word characters (e.g. '-', space) will be replaced with '.' It is in fact good practice to have rownames that are formed like this otherwise you will get problems when indexing content by row names. You could keep the original gene vector as another column in your data frame.