Skip to content
Prev 377988 / 398502 Next

Accessing Data Frame

Thanks for the feedback.
Point taken about the data.table package, I will take a look for sure.  
As I am new to the R programming, I'm exploring with the default  
libraries as a start.

I have various options that works like this one:

topCard <- deck[1,]
#Remove card from deck using row name
deck <- deck[!rownames(deck) %in% row.names(topCard),]

Is it recommended/safe/good practice to work on items using the item names?

Benoit

Jeff Newmiller <jdnewmil at dcn.davis.ca.us> a ?crit?: