Why is a paleoTS function not working?
I have loaded paleoTS in R (2.13.0) and tried to use the fit3models.joint
function, but can't. I tried reinstallin开发者_高级运维g but it assures me paleoTS is already there! Help appreciated:
Error: could not find function "fit3models.joint"
> utils:::menuInstallPkgs()
Warning: package 'paleoTS' is in use and will not be installed
Not enough information yet. I see no evidence that fit3models.joint
is a function in the paleoTS
package: did you mean fit3models
... ? or fit3models(...,method='Joint')
(based on the looking at the examples in ?fit3models
?
install.packages("paleoTS")
library("paleoTS")
ls(pos=2)
[1] "add.OU.curves" "akaike.wts" "as.paleoTS"
[4] "as.paleoTSfit" "cat.paleoTS" "compareModels"
[7] "fit3models" "fitGpunc" "fit.sgs"
[10] "IC" "ln.paleoTS" "logL.covTrack"
[13] "logL.GRW" "logL.joint.GRW" "logL.joint.OU"
[16] "logL.joint.punc" "logL.joint.punc.omega" "logL.joint.Stasis"
[19] "logL.joint.URW" "logL.Mult" "logL.Mult.covTrack"
[22] "logL.punc" "logL.punc.omega" "logL.SameMs"
[25] "logL.SameVs" "logL.sgs" "logL.sgs.omega"
[28] "logL.Stasis" "logL.URW" "LRI"
[31] "lynchD" "mle.GRW" "mle.Stasis"
[34] "mle.URW" "opt.covTrack" "opt.covTrack.Mult"
[37] "opt.GRW" "opt.GRW.shift" "opt.joint.GRW"
[40] "opt.joint.OU" "opt.joint.punc" "opt.joint.Stasis"
[43] "opt.joint.URW" "opt.punc" "opt.RW.Mult"
[46] "opt.RW.SameMs" "opt.RW.SameVs" "opt.sgs"
[49] "opt.Stasis" "opt.URW" "ou.M"
[52] "ou.V" "plot.paleoTS" "pool.var"
[55] "read.paleoTS" "shift2gg" "shifts"
[58] "sim.covTrack" "sim.GRW" "sim.GRW.shift"
[61] "sim.OU" "sim.punc" "sim.sgs"
[64] "sim.Stasis" "split4punc" "std.paleoTS"
[67] "sub.paleoTS" "test.var.het"
精彩评论