search for: modelsourc

Displaying 3 results from an estimated 3 matches for "modelsourc".

Did you mean: modelsource
2009 Dec 03
0
Problem with predict() and factors
...ts(sh1[[ENVNAME]],start=c(2004,1),freq=52) #Data is now a Time Series #Prep Out-of-sample test ranges modLength=length(sh1[[ENVNAME]]) modMax=round((modLength/3)*2) modEndDate=time(tsSource)[modMax] modStartDate=time(tsSource)[1] #RAW SUMAMRY WITH OVERLAY OF OUT OF SAMPLE RANGES summary(tsSource) modelSource=window(tsSource,modStartDate,end=modEndDate) verSource=window(tsSource,time(tsSource)[modMax+1]) pdf(paste("Q:/ReleaseMgmt/Environment Mgmt/Data/Current/Metrics/Mainframe/Test Environment Projections/RSTATS/images/",ENVNAME,"-",HOUR,"-","Raw Metrics with Test Ran...
2009 Jul 15
2
storing lm() results and other objects in a list
to clean up some code I would like to make a list of arbitrary length to store?various objects for use in a loop sample code: ############ BEGIN SAMPLE ############## # You can see the need for a loop already linearModel1=lm(modelSource ~ .,mcReg) linearModel2=step(linearModel1) linearModel3=lm(modelSource ~ .-1,mcReg) linearModel4=step(linearModel3) #custom linearModel5=lm(modelSource ~ . -ACF-MonthlyST1-MonthlyST2-MonthlyBLA,mcReg) LinearModel1.res <- residuals(linearModel1) LinearModel2.res <- residuals(linearModel2) Li...
2009 Jul 21
2
Odd coefficent behavior
Why are my coefficients getting appended with a 1? It borks a match I do later against the original list that doesn't have the random 1 added to the end. > linearModel[[1]] Call: lm(formula = modelSource ~ +UNITBUILD + UNITDB + ITBUILD + ITDB + UATBUILD + UATDB + HOGANCODE + RCF + ReleaseST1 + ReleaseST2 + ReleaseBLA + Small.Bank.Acquisitions + HLY.NewYear + HLY.MLK + HLY.PRES + HLY.MEMORIAL + HLY.J4 + HLY.LABOR + HLY.COLUMBUS + HLY.VETS + HLY.THANKS + HLY.XMAS + HLY.ELECT + HLY.PATRIOT + EOM,...