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

2017-11-28 Thread Engin YILMAZ
Thanks all users Virus-free. www.avast.com <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9F

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

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] 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