データフレームから継承する新しいクラスを作成しようとしています。
> setClass('new.frame',
representation(colour='character'),
contains = 'data.frame')
これは、テスト用のそのクラスのインスタンスです。
> test_data = data.frame(cbind(runif(5), runif(5)))
> names(test_data) = c('X', 'Y')
> test_frame = new('new.frame', test_data, colour='red')
それが大丈夫に見えることを確認するためだけに...
> data.frame
Object of class "new.frame"
X Y
1 0.8766306 0.4741213
2 0.1221508 0.5117665
3 0.4838761 0.4973627
4 0.7858294 0.4064749
5 0.5147703 0.9135304
Slot "colour":
[1] "red"
...そして継承が機能したことを確認する
> is.data.frame(test_frame)
[1] TRUE
> getClass(class(test_frame))
Class "new.frame" [in ".GlobalEnv"]
Slots:
Name: .Data colour names
Class: list character character
Name: row.names .S3Class
Class: data.frameRowLabels character
Extends:
Class "data.frame", directly
Class "list", by class "data.frame", distance 2
Class "oldClass", by class "data.frame", distance 2
Class "vector", by class "data.frame", distance 3
データフレームであるという特性を利用しようとしたときに遭遇した問題は次のとおりです。
> terms.formula(Y ~ X, data = test_frame)
Error in terms.formula(Y ~ X, data = test_frame) :
'data' argument is of the wrong type
私は愚かな何かを逃したかもしれません。もしそうなら、それを指摘してくれてありがとう。
ここでの問題について正しければ、とにかくterms.formulaにdata.frameを与えているという事実を認識させることができますか?