Displaying 20 results from an estimated 1100 matches similar to: "Plot qualitative y axis"
2018 May 22
2
Plot qualitative y axis
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 not needed.
Hope you can help me thanks in advance.
2018-05-22 0:58 GMT+02:00 Jim Lemon <drjimlemon at gmail.com>:
> Hi
2018 May 21
0
Plot qualitative y axis
See ?barplot and set the horiz argument to TRUE.
(This is in the base R plotting version. The ggplot2 and lattice systems
have other ways of doing this)
Note: if you search on e.g. "barplots in R" or similar, you should find
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
2018 May 23
0
Plot qualitative y axis
Hi Pedro,
melt() is probably working. The problem is I did not finish the copy and paste.? It would have been better if I had included the ggplot() command.
Try
==============================================================
library(reshape2)
library(ggplot2)
dat1? <- structure(list(N = c("I", "II", "III", "IV", "V", "VI",
2018 May 23
0
Plot qualitative y axis
Hi Pedro,
Not too hard. Just have to watch the order of the variables:
ppdf<-read.table(text="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 NA
XIV 7 8",
header=TRUE)
plot(rev(ppdf[,2]),1:14,col="blue",lty=1,type="l",
2008 Feb 12
3
sort a data frame according to roman characters
R-help,
I have a data frame with one column containing roman numbers
The data are not sorted as : I II III IV V VI VII VIII IX
X XI XII XIII XIV XV
Using data[order(data$Roman),] does not do the job.
How can this be done?
Thanks in advance.
2004 Sep 27
1
Peer Review - Linuxfest Presentation Outline
Hello all,
I've been invited to do a presentation on Asterisk for the Ohio
Linuxfest in Columbus this weekend (http://www.ohiolinux.org). Rough
estimates are that nearly 500 people will be attending. I've been working
on an outline for a couple of weeks and I would like to have some peer
review of the information presented.
I am going to have to cut down the content to make it fit in
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)
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
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.
2017 Jun 08
0
Plot MArginal distribution in the correct place
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.
Can you give me a clue to try to illustrate better if it is not showing
what I believe it shows a better way to show it?
Many thanks in advance.
El 7 jun. 2017
2017 Jun 02
1
Upper bands and lower bands
Sorry,
For me a vector is a matrix with mx1 dimmensions. But it is true that it is
not the way I correctly must talk in R.
Can you guide me in what I?m trying to do? I?m trying to find what I want
in Excel using something like a parabolic function but dind?t get yet (then
to try to replicate in R).
2017-06-02 7:01 GMT+02:00 Bert Gunter <bgunter.4567 at gmail.com>:
> Bert Gunter
>
2017 Jun 07
2
Plot MArginal distribution in the correct place
Hi Pedro,
As a one-off, you 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
2017 Jun 14
0
Plot MArginal distribution in the correct place
Hi Pedro,
If you keep that same margins for the second plot:
par(mar=c(10,0,6,6))
barplot(fhist$counts,axes=FALSE, space=0,horiz=TRUE,col="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
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 01
0
Upper bands and lower bands
I explain better:
I have this percentage z<-1/(n*365) where n=20 so z is
0,000136986
Imagine: a matrix with length(n*365) so that
matrix result is
resultc(
1,
1-z
result previous row-z
result previous row-z
....
0)
If I plot this is a linear decreasing line
I want to plot an upper line wich is 10% higher tan resultc on the first
values and then decreasing so that last value will be 0.05.
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
2017 Jun 17
1
Plot MArginal distribution in the correct place
Can you suggest a plot on the right side so that the right plot has the
same units of left plot and reflect the counts of the number of time the
values repeat, something like the empirical distribution?
2017-06-14 12:30 GMT+02:00 Jim Lemon <drjimlemon at gmail.com>:
> Hi Pedro,
> If you keep that same margins for the second plot:
>
> par(mar=c(10,0,6,6))
>
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]]
2013 Apr 26
1
Partner node reboot issue
Dear Team, I came across one problem in Oracle RAC Database server with
OCFS2 file system.
When I manually un-plug the Ethernet cable of primary node, the secondary
node automatically restarted.
Regards,
Yuvrajsinh Chauhan
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2005 Aug 05
2
Finding the UID of samba users
Hi Folks:
I am in the process of moving all of our users over to our new Samba
File server which runs FC3.
In order to properly secure the home folders, I need to chown them to
the UID of the individual user, and chgrp them to the domain users
group. I know the GID for the domain users, so no problem there. Is
there a way to find a list of the UID for all the users.
I know that I can do it