search for: percentil101

Displaying 17 results from an estimated 17 matches for "percentil101".

2017 Jun 14
2
Plot MArginal distribution in the correct place
Please can you send me some orientation? Many thanks in advance. Only if posible one book o similar example to understand why it is not what I try. El 8 jun. 2017 7:50 PM, "Pedro p?ramo" <percentil101 at gmail.com> escribi?: > Many thanks Jim. > > What I,m trying to show with the fhist plot is the empirical distribution > of the values of the left plot simulation. > > You say: > However, I don't think that this plot illustrates quite what you think it > does. >...
2017 Jun 14
0
Plot MArginal distribution in the correct place
...l="lightgray") it looks reasonably well aligned to me. Because you are plotting the counts of the values in Simulation, the ordinate (vertical axis) of the bar plot is in quite different units from that of the plot on the left side. Jim On Wed, Jun 14, 2017 at 5:33 PM, Pedro p?ramo <percentil101 at gmail.com> wrote: > Please can you send me some orientation? > > Many thanks in advance. > > Only if posible one book o similar example to understand why it is not what > I try. > > El 8 jun. 2017 7:50 PM, "Pedro p?ramo" <percentil101 at gmail.com> escr...
2017 Jun 08
0
Plot MArginal distribution in the correct place
...u just shove the coordinates around a bit: par(mar=c(11,0,6,6)) barplot(fhist$counts,axes=FALSE, space=0,horiz=TRUE,col="lightgray", ylim=c(0,24)) However, I don't think that this plot illustrates quite what you think it does. Jim On Wed, Jun 7, 2017 at 4:01 PM, Pedro p?ramo <percentil101 at gmail.com> wrote: > Please, I'm trying to put the right plot higher and centered on the left > values but I don't achive. > > I would appreciate so much your help > > El 6 jun. 2017 22:37, "Pedro p?ramo" <percentil101 at gmail.com> escribi?: > >...
2017 Jun 07
2
Plot MArginal distribution in the correct place
...u just shove the coordinates around a bit: par(mar=c(11,0,6,6)) barplot(fhist$counts,axes=FALSE, space=0,horiz=TRUE,col="lightgray", ylim=c(0,24)) However, I don't think that this plot illustrates quite what you think it does. Jim On Wed, Jun 7, 2017 at 4:01 PM, Pedro p?ramo <percentil101 at gmail.com> wrote: > Please, I'm trying to put the right plot higher and centered on the left > values but I don't achive. > > I would appreciate so much your help > > El 6 jun. 2017 22:37, "Pedro p?ramo" <percentil101 at gmail.com> escribi?: > >...
2017 Jun 17
1
Plot MArginal distribution in the correct place
...s reasonably well aligned to me. Because you are plotting the > counts of the values in Simulation, the ordinate (vertical axis) of > the bar plot is in quite different units from that of the plot on the > left side. > > Jim > > On Wed, Jun 14, 2017 at 5:33 PM, Pedro p?ramo <percentil101 at gmail.com> > wrote: > > Please can you send me some orientation? > > > > Many thanks in advance. > > > > Only if posible one book o similar example to understand why it is not > what > > I try. > > > > El 8 jun. 2017 7:50 PM, "Pedro p...
2017 Jun 01
4
Upper bands and lower bands
Hi all I want to add a band of fluctuaci?n (exponential decreading) to a linear deacrecing values Imagine: I have a matrix like c(10,9,8,7,6,5,4,3,2,1) The thing is I want two new lines so that the m?ximum value of the new colum on the m?ximum is from 10% to 5% higher and the same lower for the m?nimum the final two matix will be something like c(10+0.10*10,9+0.089*9,8+0.075*8.....,1+0.05*1)
2018 May 23
0
Plot qualitative y axis
...;,lty=1,type="l") axis(2,at=1:14,labels=rev(ppdf[,1])) legend(1300,14,c("M","W"),fill=c("blue","red")) text(rev(ppdf[,2]),1:14,rev(ppdf[,2]),adj=1) text(rev(ppdf[,3]),1:14,rev(ppdf[,3]),adj=0) Jim On Wed, May 23, 2018 at 7:44 AM, Pedro p?ramo <percentil101 at gmail.com> wrote: > > > 2018-05-22 23:44 GMT+02:00 Pedro p?ramo <percentil101 at gmail.com>: >> >> Many thanks, >> >> My goal is to make a plott like attached but the Y axis starts in XIV and >> end at top in I. Generally for instance in excel X a...
2017 Jun 01
0
Upper bands and lower bands
...d then decreasing so that last value will be 0.05. the same in the lower, a line which values are at the beggining a 10% lower and smoothly dreasing values till the last will be 5% lower. Is it posible to make thins bands exponencially with a code? 2017-06-01 20:20 GMT+02:00 Pedro p?ramo <percentil101 at gmail.com>: > Hi all > > I want to add a band of fluctuaci?n (exponential decreading) to a linear > deacrecing values > > Imagine: I have a matrix like c(10,9,8,7,6,5,4,3,2,1) > > The thing is I want two new lines so that the m?ximum value of the new > colum on th...
2018 May 22
2
Plot qualitative y axis
...d","blue")) > legend(1000,8,c("W","M"),fill=c("blue","red")) > lines(ppdf$W,barpos[2,],col="blue") > lines(ppdf$M,barpos[1,],col="red") > > Jim > > > On Mon, May 21, 2018 at 10:44 PM, Pedro p?ramo <percentil101 at gmail.com> > wrote: > > Hi all, > > > > I?m trying to plot this data > > > > N M W > > I 10 106 > > II 124 484 > > III 321 874 > > IV 777 1140 > > V 896 996 > > VI 1706 1250 > > VII 635 433 > > VIII 1437 654 >...
2017 Jun 07
0
Plot MArginal distribution in the correct place
Please, I'm trying to put the right plot higher and centered on the left values but I don't achive. I would appreciate so much your help El 6 jun. 2017 22:37, "Pedro p?ramo" <percentil101 at gmail.com> escribi?: > Hi all, > > I have this code, but the marginal distribution plot doesn?t appear > aligned with the left plot. > > > I think could be something about layout or par() mar. > > The code was programmed by me time ago. > > Can anyone help me...
2018 May 23
0
Plot qualitative y axis
...row.names = c(NA, -14L)) dat2? <- melt(dat1) ggplot(dat2, aes(N, value, colour = variable, group = variable)) + ????? geom_point() + geom_line() ============================================================= I feel very stupid. On Tuesday, May 22, 2018, 10:40:09 p.m. EDT, Pedro p?ramo <percentil101 at gmail.com> wrote: Many thanks, My goal is to make a plott like attached but the Y axis starts in XIV and end at top in I.? Generally for instance in excel X axis is categories but Y axis is numbers I want the contrary plotted in lines, your last help is near what I look but barplot is n...
2017 Jun 06
2
Plot MArginal distribution in the correct place
Hi all, I have this code, but the marginal distribution plot doesn?t appear aligned with the left plot. I think could be something about layout or par() mar. The code was programmed by me time ago. Can anyone help me to get the marginal distribution on the center (more higher centered) id.txt Could have this code: 05/01/2016;9335,200195 06/01/2016;9197,400391 07/01/2016;9059,299805
2017 Jun 02
0
Upper bands and lower bands
Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Thu, Jun 1, 2017 at 11:20 AM, Pedro p?ramo <percentil101 at gmail.com> wrote: > Hi all > > I want to add a band of fluctuaci?n (exponential decreading) to a linear > deacrecing values > > Imagine: I have a matrix like c(10,9,8,7,6,5,4,3,2,1) Ummm... That is not a matrix. It's a vector. -- Bert > > The thing is I want...
2018 May 21
0
Plot qualitative y axis
...d numerous examples with code. Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Mon, May 21, 2018 at 5:44 AM, Pedro p?ramo <percentil101 at gmail.com> wrote: > Hi all, > > I?m trying to plot this data > > N M W > I 10 106 > II 124 484 > III 321 874 > IV 777 1140 > V 896 996 > VI 1706 1250 > VII 635 433 > VIII 1437 654 > IX 693 333 > X 1343 624 > XI 1221 611 > XII 25 15 > XIII...
2018 May 21
2
Plot qualitative y axis
Hi all, I?m trying to plot this data N M W I 10 106 II 124 484 III 321 874 IV 777 1140 V 896 996 VI 1706 1250 VII 635 433 VIII 1437 654 IX 693 333 X 1343 624 XI 1221 611 XII 25 15 XIII 3 XIV 7 8 So that in de Y axis will be the level (qualitative data) and in the X axis will be M and W variables. So x axis will be wwith a lenght between 0 and 2000. I would like to plot a line with M and other
2017 Jun 02
1
Upper bands and lower bands
...com>: > Bert Gunter > > "The trouble with having an open mind is that people keep coming along > and sticking things into it." > -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) > > > On Thu, Jun 1, 2017 at 11:20 AM, Pedro p?ramo <percentil101 at gmail.com> > wrote: > > Hi all > > > > I want to add a band of fluctuaci?n (exponential decreading) to a linear > > deacrecing values > > > > Imagine: I have a matrix like c(10,9,8,7,6,5,4,3,2,1) > > Ummm... That is not a matrix. It's a vector...
2017 Jun 04
1
Format y axis
Hi all, I have been looking on documentation but I?m not able to find how to customize format on y axis so that for example: y value goes from 1000 to 9000 it appears on thousand position a 1,000 and on the comas with "," and two decimals. (For the previous answers many thanks) [[alternative HTML version deleted]]