Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
2k views

SQL-like functionality in R

I am used to writing data manipulation logic in SQL and now that I am learning R I find myself sometimes just wanting to do something that would be simple in SQL but I have to learn a bunch of stuff ...
2
votes
2answers
148 views

sqldf package in R, querying a data frame

I'm trying to rewrite some code using the sqldf library in R, which should allow me to run SQL queries on data frames, but I am having an issue in that whenever I try to run a query, R seems like it ...
1
vote
2answers
53 views

NA values using sqldf

If I try to get an average of c(NA, NA, 3, 4, 5, 6, 7, 8, 9, 10) using AVG from SQL, I get a value of 5.2, instead of the expected 6.5. # prepare data and write to file write.table(data.frame(col1 = ...
1
vote
4answers
105 views

Cumulative sum by group in sqldf?

I have a data frame with 3 variables: place, time, and value (P, T, X). I want to create a fourth variable which will be the cumulative sum of X. Normally I like to do grouping calculations with ...
1
vote
1answer
100 views

sqldf, csv, and fields containing commas

Took me a while to figure this out. So, I am answering my own question. You have some .csv, you want to load it fast, you want to use the sqldf package. Your usual code is irritated by a few annoying ...
0
votes
2answers
56 views

In R, How Do I Create a Data Frame with Unique Values from One Column of another Data Frame?

I'm trying to learn R, but I'm stuck on something that seems simple. I know SQL, and the easiest way for me to communicate my question is with that language. Can someone help me with a translation ...
0
votes
1answer
145 views

R tcl/tk package running Mac OS X not working

I have R 2.14 installed on a Mac OS X 10.7.2 (Lion). I noticed that when I try to use the sqldf package, R hangs. I tried the fix as suggested by the sqldf help, which is to execute: ...
0
votes
2answers
74 views

sqldf query syntax question

I have some query like this: sqldf("select TenScore from data where State_P = 'AndhraPradesh'") But I have "AndhraPradesh" in a variable 'stateValue'. How can I use this variable in a select query ...