R の列にメタデータを追加しようとしています。大きなデータ セットがあり、コメントを使用して R のメタデータ情報を取得したいと考えています (または、より適切な場所がありますか?)。別のファイルの単一セルに入力されたメタデータがあり、コメントを定義するときにそれらを参照しようとしています。
私は次のことを試しました:
comment(data$cat)=as.quoted(metadata$catdot)
comment(data$cat)
# NULL
この次のものは、取り込みたいテキストの周りに引用符を付けようとしました
comment(data$cat)=as.quoted(metadata$cat)
# Error in parse(text = x) : <text>:1:5: unexpected symbol
# 1: how many
^
引用符を使用した別の試み。ばかげた文章は無視してください。作成したデータ セットとメタ データを使用してコードをテストしているだけです。
comment(data$place)=metadata$placequote
# Error in `comment<-`(`*tmp*`, value = list("whether the location is a shelter or a foster home because that is really important the poor little dogs and cats just don't have anywhere else to go maybe they are blind or starving and it's really just such a shame")) :
# attempt to set invalid 'comment' attribute
comment(data$place)=readChar(metadata$place,nchars=81)
# Error in readChar(metadata$place, nchars = 81) :
# cannot read from this connection
comment(data$place)=paste(readLines(metadata$place), collapse=" ")
# Error in readLines(metadata$place) : 'con' is not a connection