Displaying 10 results from an estimated 10 matches for "xtic".
Did you mean:
tic
2008 Jul 26
1
issues with gap.plot function
Dear all:
I have the following codes:
Xdata<-c(2,3,8,9,10)
Ydata<-1:5
gap.plot(Xdata, Ydata,gap=c(5,6),gap.axis="x",type="o")
However, the type='o' seems only work on the first part of gap plot, the second half of the plot always just points, you can not add lines on that part, any help will be highly appreciated. I would like to have these two parts of
2011 Apr 04
2
gap.barplot doesn't support data arrays?
...a strange plot with no y-tics and bars stretching downwards, as if
all the values were negative:
> twogrp2<-array(twogrp, dim=c(2,5))
>
gap.barplot(twogrp2,gap=c(8,16),xlab="Index",ytics=c(3,6,17,20),ylab="Group
values",main="Barplot with gap")
Error in rect(xtics[bigones] - halfwidth, botgap, xtics[bigones] +
halfwidth, :
cannot mix zero-length and non-zero-length coordinates
However, the main title and axis labels do appear correctly.
Are data arrays unsupported for gap.barplot, or am I missing something?
Thanks,
Drew Steen
2008 Feb 16
1
plotEst
...[3,] 2.118518 1.3364878 2.900549
[4,] 2.709806 1.6899134 3.729698
[5,] 3.570759 2.2510895 4.890428
[6,] 4.874569 2.9081958 6.840942
The first value in x1 fit the first row in the matrix, etc..
I tried the function plotEst like this:
plotEst(ests,y = dim(ests)[1]:1, xlab="sensitivity", xtic=x1,
xlim=range(xtic))
and got the Error:
Error in strsplit(x, as.character(split), as.logical(extended),
as.logical(fixed),
:
non-character argument in strsplit()
What am I missing?
Thank you,
Sigalit.
[[alternative HTML version deleted]]
2004 Jul 05
3
[LLVMdev] Propose change gnuplot options for small picture versions
...ript is unreadable
( for example http://llvm.cs.uiuc.edu/testresults/X86/running_loc.png ).
I suggest rotate it to vertical position in small picture versions.
.png file created modified gnuplot script (for comparing) and patch
attached.
"set xlabel 0,-1 " added for solving xlabel and xtics text overlap after
rotate.
Vladimir
-------------- next part --------------
A non-text attachment was scrubbed...
Name: running_loc.png
Type: image/png
Size: 4436 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20040705/b3db39ad/attachment.png>
--------...
2008 Jun 17
2
color2D.matplot axis names
Hi,
I finally came up with a nice colored matrixplot, using the color2D.matplot
function of the plotrix package. But I can't assign xtics and ytics to this
plot. I made sure that the matrix has correct colnames() and rownames().
Here's what I do:
a=matrix(1:16, 4, 4)
colnames(a) <- c("X1", "X2", "X3", X4)
rownames(a) <- c("Y1", "Y2", "Y3", "Y4")
color2...
2010 Sep 16
1
Help with graphic margin
...The 2 subplots use the same X axis. So I provide no tics labels and no xlab
for the top plot. I would like the second plot to be right bellow the first
one (small margin).
So my question is how I can keep a small gap between the 2 plots while
having enough space under the second plot to insert xtics-labels + xlab.
Hope I have been clear enough!
With regards,
Phil
--
View this message in context: http://r.789695.n4.nabble.com/Help-with-graphic-margin-tp2542469p2542469.html
Sent from the R help mailing list archive at Nabble.com.
2004 Jul 06
0
[LLVMdev] Propose change gnuplot options for small picture versions
> Change the "rotate by 90" xtics specification to just "rotate" which is
> equivalent. The "by <angle>" syntax is not acceptable for all output
> devices. Apparently the Sparc and x86 output devices (no color) don't
> accept this, but should accept the plain "rotate".
Sorry, i mu...
2006 Jul 19
2
Plotting lines and points on the second plot when using gap.plot in plotrix
...plotrix package
allows users to draw graphs that have a broken axis. However, I want to
then add a line to the "second" plot, but can't.
Eg:
twogrp<-c(rnorm(10)+4,rnorm(10)+20)
gap.plot(twogrp,rnorm(20),gap.bounds=c(8,16),gap.axis="x",xlab="X
values",
xtics=c(4,7,17,20),ylab="Y values",main="Plot gap on X axis")
# this doesn't work
points(17,0,col="red")
# this does work
points(4,0,col="green")
I somehow need to set the focus to the second plot so that I can draw
lines and points on it.
Any help?
Mick
2009 Mar 25
1
boxplot in subgroups
...(either C,S, or M) with
respect to C1_C2. However, instead of one boxplot I want to plot three
boxplots for a given ASA1 value such that each sub-boxplot represent
the distribution for C1-C2 for each of the three possible values of
ASA2 (C,S or M). I want to show this subgroup with a single xtics
(either C, S or M) corresponding to the ASA1 value selected.
I tried to do it, but ending with the following error. I am not sure
how exactly I should build the object to plot as subgroup.
Error in axis(side = 1, at = 1:9, labels = c("C", "M", "S" :
'at&...
2008 Jul 02
1
graph woes
...plot(type = "s", y = control_Table, x = p_USER_Table, xlab =
"% of compound database searched", ylab = "% of known ligands found",
main = title , col = "#ff0000", pch = "20", xlim = (0.1, 100), ylim =
(0, 100), log = "x")
axTicks(side = 1, log = True)
points(type = "s", y = control_Table, x = p_PMF_Table, col = "#00c000")
points(type = "s", y = control_Table, x = p_GOLD_Table, col = "#0080ff")
points(type = "s", y = control_Table, x = p_CHEMSCORE_Ta...