Displaying 1 result from an estimated 1 matches for "cddata".
Did you mean:
cdata
2012 Nov 26
3
R strange behaviour when building huge concatenation
...dati/model-pareto-nbd.R";
String modelBgNbd = "/dati/model-bg-nbd.R";
String modelCbgCnbd = "/dati/model-cbg-cnbd-k.R";
code.R_source(helper);
code.R_source(modelNbd);
code.R_source(modelParetoNbd);
code.R_source(modelBgNbd);
code.R_source(modelCbgCnbd);
code.addRCode("cdData <- read.table(\"/dati/cdnow.csv\", head=T)");
code.addRCode("names(cdData)[2] <- \"x\";");
code.addRCode("bgMleFit <- bgEstimateParameters(cdData, list(r=1, alpha=2,
a=1, b=2));");
code.addRCode("summary(bgMleFit);");
code.addRCode(&qu...