search for: 241000

Displaying 2 results from an estimated 2 matches for "241000".

Did you mean: 24000
2008 Mar 28
6
Blackberry simulator "sort of works"
http://www.slashdev.ca/2008/03/27/blackberry-simulator-in-linux-sort-of/ says the blackberry simulator kind of works in wine. It's freely downloadable from http://na.blackberry.com/eng/developers/downloads/simulators.jsp in case anyone wants to triage the bugs...
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.