Displaying 20 results from an estimated 2000 matches similar to: "lattice plot - portrait / landscape"
2003 Jun 09
1
installing XML in linux
Hi,
I was trying to install XML package in a linux
(dabian) machine and got the following error message.
I am not sure whether there is any error in my linux
installion. I appreciate suggestions to install XML
properly in this machine. 
Thanks in advance.
Mahbub.
######Errors#### 
$ R CMD INSTALL -l /usr/local/lib/R/library/
XML_0.93-4.tar.gz 
* Installing *source* package 'XML' ...
2003 Sep 04
1
lattice question--- different ylim
Hi there,
I have four panels in a lattice bwplot. I want to have
two different ylim for the panels, for example panels
[1,1] and [1,2] with ylim=c(0,200) and panels [2,1]
and [2,2] with ylim=c(0,100). 
Thanks for help in advance.
Mahbub.
2003 Mar 21
1
trellis plot
<html><div style=''background-color:''><P><FONT size=4>Hi there,</FONT></P>
<P><FONT size=4>I need some help about trellis plot. I have the following plot.</FONT></P>
<P><FONT size=4>x <- c(rep(LETTERS[1:4],13), rep(LETTERS[4:1],12))</FONT></P>
<P><FONT size=4>y <-
2003 Aug 25
2
lattice question
Hi,
I want to use (similar to) las options in lattice
(bwplot) plot. Actually I want to have x-axis labels
as vertical instead of default horizontal.
Thanks in advance for your help.
Mahbub
2003 Aug 21
4
anova(lme object)
Hi,
I use lme to fit models like
R> res1 <- lme(y~A+B, data=mydata, random=~1|subject)
R> res2 <- lme(y~B+A, data=mydata, random=~1|subject)
(only difference between these two models are the
sequence in which the indep variables are written in
formula)
where y is continuous and A, B, and subject are
factors. To get ANOVA table I used
R> anova(res1)
R> anova(res2)
and found
2009 Jun 24
1
gnls : Rho
Hello list:
How to extract the value of "Rho" from a gnls() object. I am using gnls()
function similar to
res <- gnls(y~SSmicmen(),correlation=corCompSymm(form~1|b),data=dat)
Thanks in advance,
Mahbub.
-- 
Mahbub  Latif
School of Mathematical Sciences
Queen Mary, University of London
United Kingdom
	[[alternative HTML version deleted]]
2003 May 17
2
max/summary
Hi,
What is the reason for getting two different max of a
vector from two functions max() and summary()? Here is
an example,
> set.seed(2222)
> x <- sample(x=1:100000, size=10000, replace=T)
> max(x)
[1] 99992
> summary(x)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
      6   24510   49950   50020   75040   99990 
Which value is the correct one? I had this problem
while I
2004 Apr 22
4
RODBC installation in debian
Hello List,
I am trying to install RODBC package in a debian linux
box but getting the following message. Can anyone help
me to find what I am doing wrong here:
$ R CMD INSTALL RODBC_1.0-4.tar.gz
###
* Installing *source* package 'RODBC' ...
checking for gcc... gcc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross
2004 Jun 16
1
off topic: C/C++ codes for pseudo inverse
Hi,
I am looking for C/C++ codes for computing generalized
inverse of a matrix. Can anyone help me in this
regard?
Thanks,
Mahbub.
2008 Oct 15
3
request: How can we ignore a component of list having no element
Dear friends
There is a list of arrays comprising different no of rows and columns even sometimes NULL, such as [[2]] given below. How can we ignore [[2]] or others like this in the complete list. Any help in this regard is needed. Thanks 
[[1]]
       [,1] [,2] 
[1,]    3    1    
[2,]    3    1    
[3,]    3    1    
[[2]]
NULL
[[3]]
        [,1] [,2] [,3] [,4] [,5] [,6] [,7] 
 [1,]    3    1
2009 Jun 13
0
pdf-writer :landscape and :portrait
I can define orientation easily with pdf writer with :orientation, but
all the pages get the same orientation
I want to do a page as portrait and the next as landscape, without
specific order
Is it possible?
Regards
Celso Costa
2016 Apr 10
0
How to print the graphs in landscape/portrait orientation (revised)
Hi,
      I made a few graphs by ggplot. The following codes produce a pdf file
with graphs, sometimes in landscape orientation, sometimes in portrait
orientation.  I am using both Mac and Windows PC.
    Question: how can I control the orientation of the pdf file? I try to
add a line pdf(paper = ?USr?) (or pdf(paper="letter")) in the following
code, but it does not work.
  
2009 Mar 31
2
To save Trellis Plots on A3 size paper (Portrait and Landscape)
Dear R users,
 
Thanks in advance.
I am Deb, Statistician at NSW Department of Commerce, Sydney.
 
I am using R 2.8.1 on Windows XP.
 
I like to save Trellis Plots on A3 size paper (Portrait and
Landscape).
 
Currently, I am using the following command to save a Trellis Plot in
pdf [This is an example code]:
 
pdf("D:/Analysis/test.pdf")
 
dataFile <- expand.grid(xo=
2003 Apr 15
5
making a dataframe out of lapply() result
Dear R-helpers,
i have a question on how to vectorize this problem:
i have a dataframe:
tester <- data.frame(groups=c("A","A","B","B","C","C"), one=c(1,1,2,2,3,3), two=c(6,6,7,7,8,8))
# i split it into a list
tester.L <- split(tester, tester$groups)
# And want to keep only the first item in each:
lapply(tester.L, function(x) x
2007 Jun 22
2
multiple return
Dear User,
what's the correct way to obtain a multiple return from a function?
for example creating the simple function:
somma <- function (a, b) {
  c <- a+b
  return (a, b, c)
}
when I call it, it runs but returns the following output:
> somma(5, 7)
$a
[1] 5
$b
[1] 7
$c
[1] 12
Warning message:
return multi-argomento sono deprecati in: return(a, b, c) 
i.e. multi-return is
2016 Apr 09
3
How to print the graphs in landscape/portrait orientation
Hi,
   I made a few graphs by ggplot. The following codes produce a pdf file
with graphs in landscape orientation on my Windows PC, while they produce a
pdf file with the same graphs, but in portrait orientation:
*p2 <- lapply(1:(2*n), function(.x) xyz_outl[.x][[1]])  #a sequence of
graphs made by ggplot*
*m2 <- marrangeGrob(p2, nrow=3, ncol=2)  *
*ggsave("xyz.pdf", m2)*
   
2005 Jan 10
3
Mixing portrait/landscape in a postscript file
Dear list,
I'm stuck with a little graphical problem. I'm generating several 
lattice plots which are printed in a single postcript device opened by
 > trellis.device(postscript, theme=canonical.theme("postscript", 
color=F), file="an_phase2_graph.ps", paper="a4", pointsize = 10, 
onefile=TRUE, horizontal=TRUE)
Everything works fine,but some of these
2004 Oct 30
2
(no subject)
Hi, there.
Does anybody know how to plot a smooth density plot for some data
simulated from certain distribution? Thanks.
Yulei
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
Yulei He
1586 Murfin Ave. Apt 37
Ann Arbor, MI 48105-3135
yuleih at umich.edu
734-647-0305(H)
734-763-0421(O)
734-763-0427(O)
734-764-8263(fax)
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
2003 Jul 22
4
greek in main title
Hello,
I have written a function that demonstrates the CLT by
generating samples following the exponential distribution,
calculating the means, plotting the histogram, and drawing
the limiting normal curve as an overlay.  I have the title
of each histogram state the sample size and rate (1/theta)
for the exponential (the output is actually 4 histograms),
but I can't get the greek letter theta
2008 May 05
2
bwplot
Hi,
I have 2 questions about bwplot in R :
1) How to change the order of my different boxes in the graph ?
2) How to rename the names of the differents boxes ? because I know  
how to do that with boxplot (using names) but I do not find the  
equivalent parameter in bwplot.
thanks,
C?dric