similar to: 2 plots sharing axis / combining factors

Displaying 20 results from an estimated 200 matches similar to: "2 plots sharing axis / combining factors"

2000 Aug 08
2
Can't get in without a password
I have access to three machines: A: Mandrake 7.0, OpenSSH 2.1.1. B: Mandrake 5.3, SSH 1.2.27. C: Mandrake 6.1, OpenSSH 2.1.1. I can get from A to B, or B to A, without a password, but I cannot get from A or B to C without a password. sshd_config is identical on A and C. My public key is in authorized_keys on C, and all files in .ssh and .ssh itself have mode 600 and 700 respectively. C is behind
2001 Sep 07
2
Newbie to rsync
Hi All I have compiled rsync on a Solaris 5.5.1 machine1 . I have compiled this on a partition on the machine as root. I have done the following shared the Partition on the machine i have compiled. mounted this partition this partition on the machine2 where I need to rsync data then When I issue the command on machine2 as rsync -avz machine2:/x machine3: It gives me sh :rsync not found EOF
2006 Feb 08
1
Handset phone to replace Flash Operator Pane l
Breeze to set up, too. To monitor and transfer to SIP/1000 / ext 1000: 1. Insert exten => 1000,hint,SIP/1000 into your default context (the context the extension is in) 2. In the monitoring phone's web interface, click Function Keys, pick a key, change it to Destination and type in SIP/1000. Once you submit the form it will change to a SIP URL, that's OK. 3. There is no step 3.
2007 Feb 02
5
reading very large files
Hi all, I have a large file (1.8 GB) with 900,000 lines that I would like to read. Each line is a string characters. Specifically I would like to randomly select 3000 lines. For smaller files, what I'm doing is: trs <- scan("myfile", what= character(), sep = "\n") trs<- trs[sample(length(trs), 3000)] And this works OK; however my computer seems not able to handle
2008 Feb 10
2
reshape
Dear colleagues, I'd like to reshape a datafame in a long format to a wide format, but I do not quite get what I want. Here is an example of the data I've have (dat): sp <- c("a", "a", "a", "a", "b", "b", "b", "c", "d", "d", "d", "d") tr <- c("A",
2006 Jan 28
0
Re: 5, 000 concurrent calls system rollout question
What about IAX - SIP or IAX - IAX? ---- Mike Hammett Intelligent Computing Solutions http://www.ics-il.com ----- Original Message ----- From: <asterisk-users-request@lists.digium.com> To: <asterisk-users@lists.digium.com> Sent: Saturday, January 28, 2006 5:43 AM Subject: Asterisk-Users Digest, Vol 18, Issue 185 > Send Asterisk-Users mailing list submissions to >
2001 Dec 18
4
chi-squared test
I don't quite understand the difference between the two methods for performing a chi-squared test on contingency tables: summary(table()) and chisq.test() They may different results. E.g.: aa <- gl(2, 10) bb <- as.factor(c(1,2,2,2,1,2,1,2,2,2,1,2,2,2,1,1,1,2,1,1)) aa <- c(aa, aa) bb <- c(bb, bb) table(aa, bb) summary(table(aa, bb)) chisq.test(aa, bb) Could somebody give me
2005 Oct 04
1
repeated measures with random effects
Dear all, I'm interested in analysing a reapeated measure desing where plant height (H) was measured 3 times (Time). The experimental design include 2 fixed factor (say A and B) in which A is nested in B, and a random factor (C, the plot), using the aov(). So my first idea would be something like: aov(H ~ B * A %in% B * Time + Error(id) ) where id is the factor coded for the repeated
2003 May 01
4
var[i]
Dear all, How could I use variables in a loop that their names are in a vector? For example: aaa <- 1:10 bbb <- aaa*2 ccc <- aaa+bbb varn <- c("aaa", "bbb", "ccc") m <- rep(NA, 3) for (i in 1:length(varn)) m[i] <- mean(varn[i]) # wrong thanks in advance Juli -- "Wars do not solve problems, wars generate even more problems"
2008 Jun 26
1
write.table a df with specific column order
Hi I'd like to write.table a dataframe, but with an specific order of columns. Is there a direct way to do it? or I have to generate a new dataframe as follows: t <- data.frame(c=1:10, b=11:20, a=letters[1:10]) t2 <- data.frame(a=t$a, b=t$b, c=t$c) write.table(t2, row.names=F) Thanks for any comment Juli -- http://www.ceam.es/pausas
2008 Jun 27
1
removing blanks from a string
Hi Is there a way to remove blank characters from the end of strings in a vector? Something like the =TRIM functions of the OpenOffice spreadsheet. E.g., a <- c("hola ", "Yes ", "hello ") # I'd like to get: c("hola", "Yes", "hello") Thanks Juli -- http://www.ceam.es/pausas
2006 Feb 11
1
TE411P Really Bad Echo ORION
The Orion echo canceller is just ok. The Tellabs units work just as well if you don't mind 10 mins of soldering. I have the orion running with an adit 600 and a TE110P. Echo cancel is fairly good, but I have loads of problems with DTMF digits. -Darren ________________________________ From: asterisk-users-bounces@lists.digium.com
2001 Sep 25
2
glm.nb, anova.negbin
Dear R-collegues, I'm getting an error message (Error in round) when summarising a glm.nb model, and when using anova.negbin (in R 1.3.1 for windows): > m.nb <- glm.nb(tax ~ areal) > m.bn Call: glm.nb(formula = tax ~ areal, init.theta = 5.08829537115498, link = log) Coefficients: (Intercept) areal 3.03146 0.03182 Degrees of Freedom: 283 Total (i.e. Null); 282
2005 Aug 08
4
TE110P flashing red/green when PRI connected
Hi I'm having difficulties getting up my TE110P (running as a E1) when I connect it to the PRI. If I start the server with a loopback connector everything seems fine and the led is green but when I connect it to the PRI the flashing starts .... I can't seem to find anything in the log that suggests what could be wrong .....Aug 8 11:33:00 DEBUG[1369]: Updated conferencing on 31,
2003 Dec 18
3
NA, deleting rows
Dear colleges, I do not understand the following behaviour: > aa <- data.frame(a1= 1:10, a2= c(rep(NA, 5), 1:5) ) > aa a1 a2 1 1 NA 2 2 NA 3 3 NA 4 4 NA 5 5 NA 6 6 1 7 7 2 8 8 3 9 9 4 10 10 5 > aa[!aa$a2==1, ] # removing rows with a2==1 a1 a2 NA NA NA NA.1 NA NA NA.2 NA NA NA.3 NA NA NA.4 NA NA 7 7 2 8 8 3 9 9 4 10 10 5 I didn't
2009 Sep 16
3
lattice: How to display no box but only a y-axis on the left + Thicker lines
Hi, I have two somewhat embarassing questions about the lattice-related plot functions: 1.) How do I make lattice (e.g. barchart) to not draw a box but only a y-axis on the left hand side so that the plot looks like barplot with default settings? So that the following two code snippets look more alike: barplot(VADeaths) library(reshape) vad <- melt(data.frame(VADeaths,
2003 Apr 24
1
matrix to coordinates
Dear R-users, I'm sure it must be a specific function or a better way to convert matrix to x,y,z coordinates (and viceversa), than my function below (it works). Any help? m2coord <- function(m) { k <- nrow(m)*ncol(m) aa <- data.frame(r=1:k, c=1:k, v=1:k) k <- 0 for (i in 1:nrow(m)) for (j in 1:ncol(m)) { k <- k+1 aa$f[k]=i; aa$c[k]=j; aa$v[k]=m[i,j] } aa } Juli
2008 Feb 27
1
glm binomial with no successes
Dear all, I have a question on glm, family binomial. I do not see significant differences between the levels of a factor (treatment) if all data for a level is 0; and replacing a 0 for a 1 (in fact reducing the difference), then I detect the significant difference that I expected. Is there a way to overcome this problem? or this is an expected behaviour ? Here is an example: s <-
2003 Dec 18
2
barplot & plot together
Dear colleges, I'm trying to combine a barplot and a plot in a single figure as follows: data <- 1:6 t <- barplot(data, axes=F) par(new= T) plot(t, data, type="b") However, as you can see in the example, the dots of the second plot do not fall in the midpoint of the bars in the first. Any trick for setting the 2 plots at the same scale? I have unsuccessfully tried: plot(t,
2002 Sep 05
4
line thickness in plots
Hi all,, Is it possible to set a thicker line for the box around the plots? (i.e. for the four axes) Something like lwd (lines) but for the box. Thanks juli -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the