Displaying 20 results from an estimated 4000 matches similar to: "boxplot question"
2000 Apr 07
2
boxplot question in other terms
First of all, I thanks you all for replying me .
I've not asked my question in good terms, so I've made a little drawing
of what I want to do in my boxplot   : - )
|     -                                           -
|     |                                            |
|  ----                                   ----
|  |        |                                  |        |
|  |    2  |     
2000 Jan 07
2
global variable
Hi,
I would like to know if it is possible to make global variables in R.
My problem is that I use the same data frame in many different functions
that I have written, but it implies a very big waste of time because it
slow down the program.
So I would use my data frame without need to copy it each time in
another function to have a faster program execution.
How can I do ??
Thanks for Help
2012 Aug 15
4
boxplot help
Hi, im a newbie with very wobbly coding abilities.
Tearing my hair out over getting the boxplot i want...
I have a dataset called 'eagle' which consists of year (2011 or 2012), month
(jan - dec), roof (TT6, TT13 or BARE) and temp (the continuous variable that
i want to plot).
So i want boxplots of the three roof treatments in every month organised in
chronical order along x axis 2011 -
2000 Oct 03
3
prcomp compared to SPAD
Hi !
I've used the example given in the documentation for the prcomp function
both in R and SPAD to compare the results obtained.
Surprisingly, I do not obtain the same results for the coordinates of
the principal composantes with these two softwares.
using USArrests data  I obtain with R :
> summary(prcomp(USArrests))
Importance of components:
                          PC1     PC2   
2008 Jan 01
2
Alignment and Labeling of a color key in a xyplot?
Happy New Year to all R users!
I have two short questions concerning a xyplot with a color key:
1) How do I properly place (align) the color key beside the xyplot?
As you can see from the code listed below, the placement of the color  
key is not correct. I would like the upper and lower end point of the  
color key to be perfectly aligned with the upper and lower line of  
the xyplot. Adjusting
2008 Oct 07
2
panel.groups: use group.number to define colors
Dear list,
I've been trying this for a few hours and I just don't understand how  
lattice works with groups and subscripts.
Consider the following example,
> xx <- seq(1, 10, length=100)
> x <- rep(xx, 4)
> y <- c(cos(xx), sin(xx), xx, xx^2/10)
> fact <- factor(rep(c("cos", "sin", "id", "square"), each=100))
> fact2
2009 Mar 13
5
Selecting / creating unique colours for behavioural / transitional data
Dear all,
This seems like a simple problem but i've searched the help files and tried
various options but failed, so apologies in advance for asking what i'm sure
is an easy thing to do!
In short, I have displayed behavioural data using the TraMineR package such
that there is a colour change between the transition of behaviours, however,
all the methods that i have used thus far have
2006 Jul 10
2
Setting the colors of lines in a trellis plot...
With some help from those with expertise on this list, I managed to
produce a plot using trellis that looked like I wanted it to look.
Now, I need to take the same plot and make the lines on it color, but
I want to specify the color for the lines myself.
I've managed to make the key use the colors I want.  I've managed to
make the symbols of the actual plot use the colors I want.  But I
2012 Feb 03
1
incomplete final line found on <name of my sourced function file>
Dear R-ers,
I hope there is a really simple solution to my problem.
I've written a function that I saved in an .r file. I source this file
in my code. For a while it worked fine. But then when I run the line:
source("F mylineplot.r")
I started getting a warning:
In readLines(file) : incomplete final line found on 'F mylineplot.r'
I have no idea why - I tried to check and
2010 Aug 13
1
Lattice: Superimposing histograms with different colors and transparency effects
Dear users,
I would like to plot several histograms superimposed on the same panel
with different colors, with superimposed polygons appearing with
transparency effects. I also want estimated densities to appear on the
same plot. For several reasons, including that I like it, I want to use
the lattice package.
I have several questions regarding the use of the 'histogram' function
with a
2016 Apr 16
2
Mean of hexadecimal numbers
... and if you need to convert back:  ?as.hexmode
-- 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 Sat, Apr 16, 2016 at 8:20 AM, Bert Gunter <bgunter.4567 at gmail.com> wrote:
> ?strtoi
>
> You'll have to remove
2009 Nov 26
1
Adding text in the panels for Trellis plot ...
i was trying to do a for loop for plotting the histograms , but it doesnt
work properly 
> library(lattice) 
> columns <- 8:153 
> plots <- vector("list", length(columns)) 
> j <- 0 
> for (i in columns) 
+ {   
+   plots[[ j <- j+1 ]] <- histogram( ~ data[,i] | data[,2],ylab =
"Frequency", 
+   xlab = "Score", xlim = c(1,5), ylim =
2017 Nov 12
2
create waveform sawtooth
My tuneR sawtooth wave function generator is broken.
When I use the sine function, I get exactly what I expect: a sine wave whose frequency is defined by the freq parameter.  In particular, higher frequencies have shorter wavelengths (more cycles per second means shorter waves).  When I create a sawtooth wave, the opposite seems to occur: higher frequencies result in longer waves.  But that?s not
2008 Aug 25
1
lattice : using both strip and strip.left
Dear all,
I'm routinely using lattice and ggplot2, I wish to create a lattice  
theme that looks not too dissimilar to ggplot's defaults so I can  
include both graphs in a document with a consistent look.
To illustrate my questions, consider the following example:
> library(ggplot2)
> library(lattice)
>
> # example data
> x <- seq(0, 10, len = 100)
> y1 <-
2016 Apr 16
0
Mean of hexadecimal numbers
Since these are color strings, you can use functions in the grDevices
package (other others) to manipulate them.  E.g., you can convert them
to various color spaces and perhaps use the mean in one of those
spaces as your 'average color'.
  > myColors <- c(One="#FF7C00",Two="#00BF40",Three="#FFFF00")
  > col2rgb(myColors)
        One Two Three
  red  
2016 Apr 16
0
Mean of hexadecimal numbers
On 16/04/2016 8:47 AM, Atte Tenkanen wrote:
> Hi,
>
> How would you calculate the "mean colour" of several colours, for
> example c("#FF7C00","#00BF40","#FFFF00")?
>
Bert answered your subject line question.  Your text is asking something 
else:  if those are colours, you don't want to treat each of them as a 
single integer.
A
2008 Jul 18
3
How to cut data elements included in a text line
Hello,
assume I have an "unstructured" text line from a connection. Unfortunately,
it is in string format:
R> x
[1] "\talpha0\t-0.638\t0.4043\t0.4043\t-2.215\t-0.5765\t-0.137\t501\t2000"
How can I extract the data included in this string object "x" in order to
get the elements for the parameter vector called "alpha0", i.e. 
 -0.638   0.4043   0.0467 
2009 Nov 23
3
Trellis Plot
anyone know how to add text in the Trellis plot panel ?? i want to add things
eg: dot dot dot. in the headrer of the panel.
eg:  http://old.nabble.com/file/p26486579/hist1.png hist1.png 
-- 
View this message in context: http://old.nabble.com/Trellis-Plot-tp26486579p26486579.html
Sent from the R help mailing list archive at Nabble.com.
2003 Oct 29
1
Wishlist: user-specified color names for palette() (PR#4836)
Full_Name: Hsiu-Khuern Tang
Version: 1.8.0
OS: GNU/Linux (Debian unstable)
Submission from: (NULL) (156.153.255.243)
Hi,
   I use palette(rgb(red=..., green=..., blue=..., names=mycolors)) to define my
own color palette.  After doing this, the names `mycolors' are not stored in
palette() anymore, so that palette() returns a mix of built-in color names and
RGB values.
Eg:
> palette()
2001 Nov 01
2
Stupid beginner
Hello
I'm a biginner on samba and mailinglists. But I desperate need same help.
After updating my samba 2.2.1a to 2.2.2 I can't logon to the domain 
again. The log.nmdb gives out this information:
[2001/11/02 01:22:28, 0] nmbd/asyncdns.c:start_async_dns(150)
   started asyncdns process 184
[2001/11/02 01:22:28, 0] lib/util_sock.c:open_socket_in(820)
   bind failed on port 137