Displaying 1 result from an estimated 1 matches for "bextus".
Did you mean:
bextuse
2009 Jul 30
2
Question regarding sqldf
Hello,
I am having a problem using sqldf. I'm trying to choose a subset of
observations from a data set based on the date and maximum value of a
variable by date.
Here is the code I am using:
test<-sqldf("select distinct * from bextuse group by sdate having
bext=max(bext)",method="raw");
The result I get back is a data frame with 0 rows and 0 columns. I have
tried the code in another program that utilizes SQL, and I retrieve the
14 rows I was expecting to get.
I looked at the SQLite information on the web, and i...