Displaying 20 results from an estimated 24 matches for "juxtapose".
Did you mean:
juxtaposed
2009 Apr 08
0
Customize Legend in Juxtaposed Barplot
Hello, I'm making barplots out of binary data, typically 0=no 1=yes,
but in some instances I have 2=Don't Know.
Anyway, when I create a juxtaposed barplot, what appears in the legend
is 0,1,and 2.
I want it to read No, Yes, Don't Know.
I'm not sure how to do that.
In addition to this, the other variable that this juxtaposed barplot is
grouped by is grade level, which is a string that takes the values of
Elementary, Middle, and...
2010 Jan 20
2
How do I juxtapose two lattice graphs with common X axes such that the X axes line up?
Hello,
I would like to juxtapose two lattice graphs with common X axes such that the X axes line up. I am using plot right now but the edges are not neat and it would be nice if I could just draw 1 X axis and not both of them.
Here is my code:
upper<-bwplot(SignalUsed~as.factor(AllNormalHitsNamesCount),data=NmlOverviewArr...
2008 May 03
2
Stacked bar plot anomaly When column contains a negative and a positive value
...ta), beside=FALSE)
In these cases (i.e. first, third and fifth columns) the plotting is not
handled correctly. Compare this output with that of:
barplot(as.matrix(data), beside=TRUE)
Shouldn't the plots look the same except in the beside=FALSE scenario
the constituent bars should not be juxtaposed but instead are one on top
of the other?
Thanks for any advice!
Murray Richardson
2001 Aug 28
2
Christmas tree graphs
...a
Christmas tree.
The data are
left.side <- c(107092, 113053, 121163, 112209, 106543, 72895, 46920,
32606, 11106, 1134, 60, 5247)
right.side <- c(102129, 109261, 123291, 117322, 110397, 71027, 50319,
43805, 21074, 3621, 204, 6608)
The R function barchart allows me to stack bars and to juxtapose them, but I
can't see how to draw the bars outwards from a centreline. If anyone had some
hints on how to do this, I would be very grateful. Thank you!
Regards,
Andrew C. Ward
CAPE Centre
Department of Chemical Engineering
The University of Queensland
Brisbane Qld 4072 Australia
andreww at...
2016 Nov 21
2
Seek failure with very short files
I was wondering when it would be useful to compress very short audio
files. The answer may be when there are lots of files, for instance in
the case of sound fonts, or a large collection of transients. Probably
it would be better to compress the whole collection as a single large
file obtained by juxtaposing the short clips, with cues or marks to
separate the original files. May be this
2004 Dec 10
1
bar charts
Hi,
I'd like plot a bar graphic of a array.
I'd like to have the values of the single columns as juxtaposed bars (like in
"barplot" with beside=TRUE) and I'd like to have the values of the single
columns expressed like percentage of the sum of the coloumn.
In this way all the bars are composed by the sum of the percentage of the
values of a coloumn (with different colors) and all they...
2004 Dec 01
2
barplot() using beside=TRUE and the density argument
Hi
I am using barplot() to draw some barplots, with a matrix as the data so
that multiple bars are drawn for each data point. I want to use the
argument "beside=TRUE" to juxtapose the bars instead of stacking them.
If I execute:
barplot(data,names.arg=names,density=c(20,10),beside=FALSE)
I get the expected behaviour i.e. the bottom part of the column is
shaded 20 lines per inch, the top part 10 lines per inch. However, if I
try:
barplot(data,names.arg=names,density=c(20...
2004 Oct 23
1
Legend/Substitute/Plotmath problem
Hello,
I seem unable to construct a legend which contains a substitution as
well as math symbols. I'm trying to do the following:
strain2 <- "YJG48"
legend.txt <- c(
substitute(
strain *
%==% *
"YJG45, rpn10" *
%Delta%,
list(strain=strain2)
),
"Verhulst/Logistic",
"Malthus"
)
legend(
100,2.5,
legend.txt,
cex=0.75,
2011 Jul 01
1
Reverse legend label order in barplot
...rom what I want. The default appears to have labels
ascending bottom-to-top reflecting bottom-to-top sub-bars, but I would like
the labels to be the reverse, i.e. ascend top-to-bottom. Please see my
example code below for an illustration of the problem.
For a reason unknown to me, if I plot a juxtaposed barplot using
beside=TRUE, the legend labels are actually in the order I want
(top-to-bottom labels). Is there any way to make the legend appear the way
I want for a stacked barplot? If one exists, I can't find an appropriate
argument to pass to args.legend.
Many thanks,
Tom
### START...
2005 Aug 23
1
looking for blind win32 users
...esn't do a good job at this). Naming the
controls I believe is also significant (although I cannot confirm this
since I don't have a screen-reader myself). It's important to not name
your controls IDC_BUTTON1, etc. and to make sure you have static text
fields describing the fields juxtaposed with the fields they refer to....
oddsock
1997 Sep 11
1
R-alpha: Mathematical Annotation in R (plots)
...ormal rules of syntax for
any $R$ expression, but it is interpreted according to very
different rules than for normal $R$ expressions.
\begin{description}
\item[binary operators] addition, subtraction, multiplication, and
division use the standard $R$ syntax, although multiplication only
juxtaposes the arguments. For example, {\tt a+b}, {\tt a-b}, and {\tt
a/b}, produce $a+b$, $a-b$, and $a/b$, but {\tt a*b} produces $ab$.
\item[unary operators] positive and negative numbers are specified
with standard syntax. For example, {\tt +x} produces $+x$ and {\tt
-y} produces $-y$.
\item[...
2016 Dec 07
1
Seek failure with very short files
Hi all,
Thanks in advance for your help, and sorry for the slow reply. I've created
a small OS X example project
<https://drive.google.com/file/d/0B8vFUUth7NpvRFI0MmI2bVJNNEU/view?usp=sharing>
that reproduces the issue. (I've run into the size limit for emails on this
list so I've put it on Google Drive.) The program just initializes a
libFLAC++ stream decoder for a given file
2005 Oct 24
1
Basic: setting resolution and size of an R graphic
...alternative=c("greater"),var.equal=TRUE)
xy.pval <- xy.t$p.value
xz.t <- t.test(z, x, alternative=c("greater"),var.equal=TRUE)
xz.pval <- xz.t$p.value
arr <- c(x.mean,y.mean,z.mean)
mat <- matrix(arr,nrow=3,byrow=F)
barplot(mat, ## The data
beside=TRUE, ## juxtapose values in each column rather than stacking them
ylim=c(0,yTop), ## limits for y axis
xlim=c(0,3),
width=1,
space=c(0,0.1),##space: the amount of space (as a fraction of the average
bar width)
## left before each bar. beside=TRUE, can be
given
## by 2 numbers,...
2016 Nov 21
0
Seek failure with very short files
Hi,
Thank you both for your replies. I will try to put together a repro case
when I get a chance.
In our case, we are recording audio directly into FLAC files, so they can
end up with very short durations. Since I sent my first email, I have also
seen this reproduce with longer files.
Thanks,
Luke
On Mon, Nov 21, 2016 at 3:07 PM, Federico Miyara <fmiyara at fceia.unr.edu.ar>
wrote:
2005 Jan 22
0
statistical test improvement of readability (was average disjunction)
...m,"as.factor(Trt)",ordered=TRUE,conf.level=.99)
TabMEANS<-aggregate(Tab,list(Trt),FUN=mean);TabMEANS
Group.1 Trt Block AD2DAT
1 1 2.5 1.68
2 2 2.5 0.24
3 3 2.5 0.16
4 4 2.5 0.12
5 5 2.5 0.33
So I'm thinking that was more readable something like one function that permit
me to juxtapose tiny letters when we are talking about .95 confidence level and
capital letters when we are talking about .99 confidence level so results will
be approx this
Group.1 Trt Block AD2DAT .95 .99
1 1 2.5 1.68 a A
2 2 2.5 0.24 b B
3 3 2.5 0.16 b B
4 4 2.5 0.12 b B
5 5 2.5 0.33 b B
Does anyon...
2009 Jun 05
1
Mixed Latin, Greek and subscript characters in axis label
Dear R-helpers,
I have been trying to figure out how to plot a graph with an axis label
consisting of a mixture of Latin, Greek and subscript characters.
Specifically, I need to write A[beta]{1-42}, where A is Latin script A,
[beta] is Greek lower case beta and {1-42} is subscript '1-42'.
I can use xlab=expression(beta[1-42]) and obtain the [beta]{1-42} part of
the label. But, I can't
2016 Nov 15
2
Seek failure with very short files
Hi!
We are using libFLAC++ in our project for both encoding and decoding. I've
found an issue where ::FLAC::Decoder::Stream::seek_absolute() fails with
very short files (less than 2500 frames or so.) I've attached an example of
such a file.
The failure case is in stream_decoder.c, line 3071. The comment above this
case reads "check if the bounds are still ok." The sample
1999 Feb 18
1
[Q] use of expression() in plot() vs. hist()
In plot() I can get greek symbols into text items without trouble.
However, some of the same commands don't work as I would expect with
hist(). See the example below.
> plot(1:10, 2:11, xlab=expression(paste("scaled", rho)))
---- works as expected, ie. prints the greek rho
> hist(c(0,0,0,0,4,5,6,6,6,8), xlab=expression(paste("scaled", rho)))
Error: Object
2005 Feb 18
3
Barplot - Can't figure it out
Hi,
I have two catagorical vectors like this;
x = c(1, 2, 4, 2, 1)
y = c(2, 4, 2 ,4, 1)
I want to set up a barplot with the catagories 1-4 horizontally and
number of occurances vertically for each vector x,y. I've tried
boxplot(table(x,y), beside=T)
and
boxplot(c(x,y), beside=T)
among others, but can't get it to work...Any ideas? I'd apppreciate any help
2005 Aug 23
3
looking for blind win32 users
Hello all,
Sorry to post this here, but I am pretty sure there are a few blind
win32 users who frequent the list.
I'm looking for a blind win32 user or someone visually impaired enough
to depend on assistive technology to use applications. I am doing
research related to win32 development and assistive technologies.
Essentially I'm trying to make sure a new application will be usable by