Displaying 6 results from an estimated 6 matches for "maxlklweryc".
2012 Sep 25
3
Plotting of regsubsets adjr2 values not correct
Hi,
I want to make model selection with regsubsets. My code is:
a<-regsubsets(Gesamt ~ CommunistSocialist + CountrySize + GNI + Lifeexp +
Schoolyears + ExpMilitary + Mortality +
PopPoverty + PopTotal + ExpEdu + ExpHealth, data=olympiadaten, nbest=2)
summary(a)
plot(a,scale="adjr2")
(output attached)
The problem is now, that I want to fit the best model again "manually"
2012 Sep 24
2
add lowess predicted line to scatter plot
Hi,
I have a scatter plot of the variables GNI and Lifeexp (Gross National
Income and Life Expectancy, both metric). So I plotted them and I want to
add a regression line and a lowess line. I use lowess and not loess because
I have missing values. My code:
plot(GNI,Lifeexp)
abline(lm(Lifeexp~GNI), col="red")
y.loess<-loess(Lifeexp~GNI,na.
action = na.exclude)
2012 Nov 21
2
plotting 1000 simulations, error message: plot.new has not been called yet
Hi,
I know this is not a mailing list for r, but I posted my question on
several help pages and did not get any help. I really don't know how
to solve my problem, maybe you could help me?
want to simulate stock paths. I have simulated 1000 paths with 22
trading days (1 starting value). Now I want to include it into my
presentation, but animated, so I need the png files.
I want to create 1000
2012 Sep 25
2
Regsubsets model selection
Hi,
I have 12 independent variables and one dependent variable. Now I want to
select the best adj. R squared model by using the regsubsets command, so I
code:
> plot(regsubsets(Gesamt ~ CommunistSocialist + CountrySize + GNI + Lifeexp
+ Schoolyears + ExpMilitary + Mortality +
+ PopPoverty + PopTotal + ExpEdu + ExpHealth, data=olympiadaten, nbest=1,
nvmax=12), scale='adjr2')
Then I
2012 Nov 24
0
Plot of 3d stock price density
Hi,
I have thought a lot about my problem and also posted it on
stackexchange, the post can be found here:
http://stats.stackexchange.com/questions/44276/how-to-plot-3d-gbm
but I have got no useful answer, that's why I trry the last
possibility, which is to ask you professional guys.
I want to recreate the following picture with my own code, the picture
can be found in my other post:
2012 Nov 28
1
Plot 3d density
I want to create a 3d plot with densities.
I use the function density to first create a 2d dimensional plot for
specific x values, the function then creates the density and puts them
into a y variable. Now I have a second set of x values and put it
again into the density function and I get a second set of y variables
and so on.... I want to put those sets into a 3d plot, I hope you know
what I