How I can plot the standard deviation and variance separately or is there a graph where I can show the two? -- View this message in context: http://r.789695.n4.nabble.com/Deviation-standard-variance-tp4650181.html Sent from the R help mailing list archive at Nabble.com.
At least for me this is not enough information to go on Elli. What exactly is the problem? Can you post example data? On 20.11.2012, at 18:39, Elli wrote:> How I can plot the standard deviation and variance separately or is there a > graph where I can show the two? > > > > -- > View this message in context: http://r.789695.n4.nabble.com/Deviation-standard-variance-tp4650181.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.
I have a data set consisting of 364 variables and I need to graph the standard deviation and variance of each variable as only the function sd () or var () is not enough. And I want to know how I can graph this? -- View this message in context: http://r.789695.n4.nabble.com/Deviation-standard-variance-tp4650181p4650198.html Sent from the R help mailing list archive at Nabble.com.
Anyway, need to go home. If you really only want to plot the values of all variables, and its for some reason not important what value belongs to what exact variable: plot(variances,ylim=range(variances,sdevs)) # black circles points(sdevs,col=2,pch=3) #red crosses On 20.11.2012, at 19:32, Elli wrote:> I have a data set consisting of 364 variables and I need to graph the > standard deviation and variance of each variable as only the function sd () > or var () is not enough. And I want to know how I can graph this? > > > > -- > View this message in context: http://r.789695.n4.nabble.com/Deviation-standard-variance-tp4650181p4650198.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.