Re: [R] Scatterplot of many variables against a single variable

2017-11-27 Thread Ismail SEZEN
> On 27 Nov 2017, at 11:56, Engin YILMAZ wrote: > > Dear > > I try to realize one scatter matrix which draws *one single variable to all > variables* with *regression line* . You can see my eviews version in the > annex . > > How can I draw this graph with R studio? A tiny note; You do calcu

[R] How to extract coefficients from sequential (type 1) ANOVAs using lmer and lme

2017-11-27 Thread Akihiro Koyama via R-help
I wantto run sequential ANOVAs (i.e. type I sums of squares), and trying to getresults including ANOVA tables and associated coefficients for predictive variables(I am using the R 3.4.2 version). I think ANOVA tables look right, but believecoefficients are wrong. Specifically, it looks like that

Re: [R] Scatterplot of many variables against a single variable

2017-11-27 Thread MacQueen, Don
Here's the quickest way I know of to get a scatterplot of many variables against a single variable. I create example data to illustrate. x <- 1:10 ys <- matrix( runif(30), ncol=3) matplot(x,ys) ## or, a little better, matplot(x,ys, type='b') To add regression lines: for (iy in seq(ncol(ys))) a

Re: [R] Scatterplot of many variables against a single variable

2017-11-27 Thread Engin YILMAZ
Dear Users I embed my sample https://ibb.co/dhc23R or https://ibb.co/dhc23R";>https://preview.ibb.co/eEDaOR/scattersample.jpg"; alt="scattersample" border="0"> Virus-free. www.avast.co

Re: [R] Scatterplot of many variables against a single variable

2017-11-27 Thread Jeff Newmiller
You do not appear to have read the Posting Guide mentioned at the bottom if this and every posting on the mailing list. Only a very few attachment types are allowed through the mailing list... and due to the way many email programs fail to identify them properly, even those few types may not m

Re: [R] Scatterplot of many variables against a single variable

2017-11-27 Thread Ulrik Stervbo
ggplot and facets might be useful. Ulrik Ismail SEZEN schrieb am Mo., 27. Nov. 2017, 14:06: > > > On 27 Nov 2017, at 13:59, Engin YILMAZ wrote: > > > > Dear Berger and Jim > > > > Can you see my eviews example in the annex? (scattersample.jpg) > > > > Sincerely > > Engin > > Please, use an ima

Re: [R] Scatterplot of many variables against a single variable

2017-11-27 Thread Ismail SEZEN
> On 27 Nov 2017, at 13:59, Engin YILMAZ wrote: > > Dear Berger and Jim > > Can you see my eviews example in the annex? (scattersample.jpg) > > Sincerely > Engin Please, use an image hosting service (i.e. https://imgbb.com/) to share images in the list and share the link in the email. _

Re: [R] Scatterplot of many variables against a single variable

2017-11-27 Thread Engin YILMAZ
Dear Berger and Jim Can you see my eviews example in the annex? (scattersample.jpg) Sincerely Engin 2017-11-27 13:27 GMT+03:00 Eric Berger : > LOL. Great reply Jim. > (N.B. Jim's conclusion is "debatable" by a judicious choice of seed. e.g. > set.seed(79) suggests that making the request more r

Re: [R] Scatterplot of many variables against a single variable

2017-11-27 Thread Eric Berger
LOL. Great reply Jim. (N.B. Jim's conclusion is "debatable" by a judicious choice of seed. e.g. set.seed(79) suggests that making the request more readable will actually lower the number of useful answers. :-)) On Mon, Nov 27, 2017 at 11:42 AM, Jim Lemon wrote: > Hi Engin, > Sadly, your illustr

Re: [R] number to volume weighted distribution

2017-11-27 Thread PIKAL Petr
Hi Thierry Thanks for clarifiyng. I spoke about using ecdf because it gives me possibility to calculate proportion of objects below some threshold (quantiles) quite easily. quantInv <- function(distr, value) ecdf(distr)(value) > quantInv(x,80)*100 [1] 57.14286 I believe that such value could

Re: [R] Scatterplot of many variables against a single variable

2017-11-27 Thread Jim Lemon
Hi Engin, Sadly, your illustration was ambushed on the way to the list. Perhaps you want something like this: # proportion of useful answers to your request pua<-sort(runif(20)) #legibility of your request lor<-sort(runif(20))+runif(20,-0.5,0.5) # is a data set provided? dsp<-sort(runif(20))+runif

[R] Scatterplot of many variables against a single variable

2017-11-27 Thread Engin YILMAZ
Dear I try to realize one scatter matrix which draws *one single variable to all variables* with *regression line* . You can see my eviews version in the annex . How can I draw this graph with R studio? Sincerely Engin YILMAZ __ R-help@r-project.org