R- sqldf错误原始与双
R- sqldf error raw vs double
我有一个向量 lims,有分数的限制:
[1] 0.000000 7.025894 9.871630 12.411131 15.155998 18.099176 21.431354 25.391163 30.616550 40.356630
我创建了一个 table 来对其他客户进行分类:
lims[1]<- -0.00001
a<-data.frame(lims[2:10])
colnames(a)<-'maxSc'
a<-rbind(a, 100)
lims<-data.frame(lims)
lims$maxSc<-a
colnames(lims)<-c('minSc', 'maxSc')
> class(lims)
[1] "data.frame"
所以我的结果是:
> lims
minSc maxSc
1 -0.000010 7.025894
2 7.025894 9.871630
3 9.871630 12.411131
4 12.411131 15.155998
5 15.155998 18.099176
6 18.099176 21.431354
7 21.431354 25.391163
8 25.391163 30.616550
9 30.616550 40.356630
10 40.356630 100.000000
我想根据这些限制和字段 sc 对另一个 table(火车)进行分类:
>class(train$sc)
[1] "numeric"
> class(train$target)
[1] "integer"
但是当我 运行 以下时,我得到一个错误:
library(sqldf)
sqldf("Select b.minSc, b.maxSc, count(*) as total, sum(target) as compra
from train a left join lims b
on a.sc<=b.maxSc and a.sc>b.minSc
group by b.minSc, b.maxSc")
Error in sqliteSendQuery(conn, statement, bind.data) : RAW() can
only be applied to a 'raw', not a 'double'
我不明白我做错了什么。
我认为错误出在您的 lims
对象上。
lims <- c(0.000000, 7.025894, 9.871630, 12.411131,
15.155998, 18.099176, 21.431354, 25.391163,
30.616550, 40.356630)
lims[1]<- -0.00001
a<-data.frame(lims[2:10])
colnames(a)<-'maxSc'
a<-rbind(a, 100)
lims<-data.frame(lims)
lims$maxSc<-a
colnames(lims)<-c('minSc', 'maxSc')
sapply(lims, class)
# minSc maxSc
# "numeric" "data.frame"
请注意 lims$maxSc
是 data.frame
类型。然后以下查询不起作用并导致您发布的错误。
library(sqldf)
sqldf("select * from lims")
但是,如果将 lims$maxSc
设置为 a[,1]
则不会出现错误。
lims$maxSc<-a[,1]
sapply(lims,class)
# minSc maxSc
# "numeric" "numeric"
sqldf("select * from lims")
您的 data.frame
的列不能属于 class data.frame
,sqldf
才能工作。
我有一个向量 lims,有分数的限制:
[1] 0.000000 7.025894 9.871630 12.411131 15.155998 18.099176 21.431354 25.391163 30.616550 40.356630
我创建了一个 table 来对其他客户进行分类:
lims[1]<- -0.00001
a<-data.frame(lims[2:10])
colnames(a)<-'maxSc'
a<-rbind(a, 100)
lims<-data.frame(lims)
lims$maxSc<-a
colnames(lims)<-c('minSc', 'maxSc')
> class(lims)
[1] "data.frame"
所以我的结果是:
> lims
minSc maxSc
1 -0.000010 7.025894
2 7.025894 9.871630
3 9.871630 12.411131
4 12.411131 15.155998
5 15.155998 18.099176
6 18.099176 21.431354
7 21.431354 25.391163
8 25.391163 30.616550
9 30.616550 40.356630
10 40.356630 100.000000
我想根据这些限制和字段 sc 对另一个 table(火车)进行分类:
>class(train$sc)
[1] "numeric"
> class(train$target)
[1] "integer"
但是当我 运行 以下时,我得到一个错误:
library(sqldf)
sqldf("Select b.minSc, b.maxSc, count(*) as total, sum(target) as compra
from train a left join lims b
on a.sc<=b.maxSc and a.sc>b.minSc
group by b.minSc, b.maxSc")
Error in sqliteSendQuery(conn, statement, bind.data) : RAW() can only be applied to a 'raw', not a 'double'
我不明白我做错了什么。
我认为错误出在您的 lims
对象上。
lims <- c(0.000000, 7.025894, 9.871630, 12.411131,
15.155998, 18.099176, 21.431354, 25.391163,
30.616550, 40.356630)
lims[1]<- -0.00001
a<-data.frame(lims[2:10])
colnames(a)<-'maxSc'
a<-rbind(a, 100)
lims<-data.frame(lims)
lims$maxSc<-a
colnames(lims)<-c('minSc', 'maxSc')
sapply(lims, class)
# minSc maxSc
# "numeric" "data.frame"
请注意 lims$maxSc
是 data.frame
类型。然后以下查询不起作用并导致您发布的错误。
library(sqldf)
sqldf("select * from lims")
但是,如果将 lims$maxSc
设置为 a[,1]
则不会出现错误。
lims$maxSc<-a[,1]
sapply(lims,class)
# minSc maxSc
# "numeric" "numeric"
sqldf("select * from lims")
您的 data.frame
的列不能属于 class data.frame
,sqldf
才能工作。