RQDA で多数のテキストをコーディングしましたが、カテゴリをデータベースにエクスポートしようとしています。最終結果として、次のようなデータフレームになると思います。
Files Categories
File1 Category1
File2 Category2
File3 Category3
File4 Category2
File5 Category1
ここから適応させた次のコードを試しましたRblogger:
categories <- RQDAQuery("select filecat.name as category, source.name as filename
from treefile, filecat, source
where treefile.catid=filecat.catid and treefile.fid=source.id and treefile.status=1")
しかし、これまでのところ空のファイルになっています。
str(categories)
'data.frame': 0 obs. of 2 variables:
$ category: chr
$ filename: chr
> dim(categories)
[1] 0 2
> summarise(categories)
data frame with 0 columns and 1 row
どんな助けでも大歓迎です。