Displaying 20 results from an estimated 800 matches similar to: "Weird operator behaviour"
2000 Apr 25
1
loops
Hi R friends,
I havent asked a silly question in a long time so here it is:
Reading the last issue of Stat Can J. there is an article in a single 
degree of freedom test for non aditivity of interactions in anova 
tables with 1 obs per cell. The authors claim it is more powerfull than 
Tukey but for the case of multiplicative interaction, which is the 
alternative studied by Tukey. I tried to
2004 Sep 14
1
documentation error par("cin") and par("cra") (PR#7227)
Dear all,
the help of par() claims that 
cin and cra are 
c(width, height)
but it appears to be rather 
c(height, width)
Best regards
Jens Oehlschl?gel
> plot.new()
> strheight("W", unit="inches")
[1] 0.1354167
> par("cin")
[1] 0.1354167 0.1875000
> version
         _              
platform i386-pc-mingw32
arch     i386           
os       mingw32   
2007 Jan 26
1
Inferring dimensions on bitmap device from par()
Hi,
I am trying to infer the dimension of an opened bitmap (png, jpeg,
bitmap device...) from par() parmeters.  From the help on par(), I
found that:
> dim <- c(400, 200)
> png("foo.png", width=dim[1], height=dim[2])
> dim2 <- par("din") * par("cra") / par("cin")
> dev.off()
> dim2
[1] 399.9999 199.9999
I've tried the above on
1999 Dec 02
1
Large plot symbols (with pch = 1 etc)
On my home (Windows 98) machine I find:
> par()$cra
[1] 42 16
> par()$csi
[1] 0.1666667
> 
On my work machine I believe I had
par()$cra
[1] 17 16
So it looks as though R is reading the width wrongly,
and that it is the width that is somehow used to
determine the plot character size.
Incidentally I noted Brian's comment that R had misread
his character dimension information wrongly.
1998 Jun 17
1
Warning in par(args)
I'm getting a lot of warning having to do with setting graphic parameters. I
don't recall actually setting any of these, so I would guess they are being set
by something I am calling. Has anyone already figured out where this is
happening?
Paul Gilbert
_____
All dse3 tests ... ok
All dse4 tests ...Warning: skipping test 4 (requires stepwise).
 ok
dse2 graphics tests ...completed
dse3
2009 Aug 11
2
Slicing cra**y csv files
Hello,
For not too regular users of R, preparing the data is somehow a burden.
Comming from iMacro in FireFox I get a badly designed csv, which I need to
put into a daily R script. 
The data looks like that (e.g.):
22 Results,"35 Results","39 Results","2 Results","7 Results","23
Results","42 Results","36 Results","22
2009 Jan 22
5
Combining Custom and Preset Linetypes
Dear R-Users,
I created the xyplot below using 10 groups (9 groups + 'Total' of all
groups) with lty=1:10.  I need the 'Total' to be a bold solid line (lty=1)
where as the 9 groups just need to be distinguishable from each other.  As
you can probably see, when the group reaches CRA6 the lty starts from 1
again.  I have tried to specify ten unique lines using lty= 
2012 Jan 06
2
R CMD check WARNING \usage question
I'm trying to update a package and would like to crush a WARNING message for a clean build. 
I've been struggling with this question and haven't gotten any traction on the web either.
I've got a document file (Rd) that contains the following \usage statement:
\name{sample.data}
\alias{sample.data}
\title{CONIFERS forest growth model sample data}
\description{ A list object of
2003 May 12
2
on.exit(par(old.par)) warnings
I often use something like
  old.par <- par(set someting)
  on.exit(par(old.par))
but in R 1.7.0. I now get warnings:               
          
> old.par <- par()
> par(old.par)
Warning messages: 
1: parameter "cin" can't be set in: par(args) 
2: parameter "cra" can't be set in: par(args) 
3: parameter "csi" can't be set in: par(args) 
4:
2009 Jul 27
6
Superscripts and rounding
I am new to the world of R/programming so this may be a really easy question.
I thank you for your patience and help in advance 
I would like the characters km^2 to be displayed on the plot subtitle as km
squared - two as a superscript. 
I would also like to have the numbers from the data set for longitude and
latitude to be rounded to four decimal places.
Thank you.
plot (
 
2009 Mar 24
3
DO NOT REPLY [Bug 6209] New: rsync exiting suddenly
https://bugzilla.samba.org/show_bug.cgi?id=6209
           Summary: rsync exiting suddenly
           Product: rsync
           Version: 3.0.5
          Platform: x86
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P3
         Component: core
        AssignedTo: wayned@samba.org
        ReportedBy: mathieu.coavoux@aktor.fr
         QAContact:
2011 Dec 13
2
dependency error with xerces.c ???
# yum update
...
--> Running transaction check
--> Processing Dependency: libxerces-c.so.27 for package: phc
---> Package xerces-c.i386 0:2.8.0-1.el5.centos set to be updated
--> Finished Dependency Resolution
phc-0.1.7-1.el5.rf.i386 from installed has depsolving problems
   --> Missing Dependency: libxerces-c.so.27 is needed by package 
phc-0.1.7-1.el5.rf.i386 (installed)
Error:
2009 Mar 19
1
Difference in client vs. server graphics defaults
Hello,
I am having trouble with the difference between default graphic settings on
my client machine and the instance of R on our company's server. I created a
script locally that output graphs, but when I run it on the server the
output graphs have titles running past the margins, legends improperly
placed, etc. I checked the default par() settings and found differences
between my machine
2002 Jan 16
2
Subsetting data frames without a loop
I KNOW this should be easy, but I'm stuck.
My data frame consists of multiple observations from each of a number of
stations, and what I would like to do is create another data frame that
contains all the variables of the first, but only rows where a certain
variable is at its maximum for the station.
So, for example:
> my.df
   stn obs           v
1    1   1  0.26400396
2    2   1
2009 Jan 22
1
Defining Solid Line using Line Type Specification
Dear R-Users,
I created the xyplot below using 10 groups (9 groups + 'Total' of all
groups) with lty=1:10.  I need the 'Total' to be a bold solid line (lty=1)
where as the 9 groups just need to be distinguishable from each other.  As
you can probably see, when the group reaches CRA6 the lty starts from 1
again.  I have tried to specify ten unique lines using lty= 
1999 Dec 17
1
R 0.90.1 for Windows
A binary distribution  of R 0.90.1 is available at
      http://www.r-project.org/bin/windows/windows-NT/base/
Installation instruction are given in the README file at the same
location.
guido masarotto
Windows changes since 0.90.0
----------------------------
It is possible to install packages from any directory (set PKGDIR on
the make command) and to any directory (set RLIB on the make
1999 Dec 17
1
R 0.90.1 for Windows
A binary distribution  of R 0.90.1 is available at
      http://www.r-project.org/bin/windows/windows-NT/base/
Installation instruction are given in the README file at the same
location.
guido masarotto
Windows changes since 0.90.0
----------------------------
It is possible to install packages from any directory (set PKGDIR on
the make command) and to any directory (set RLIB on the make
2005 Apr 02
2
Building new graphic device drivers with g++
Dear Group,
I'm trying to build a set of new graphic device drivers. I use the
devNull example a a beginning point:
$ R CMD SHLIB devNull.c
gcc -shared -L/usr/local/lib -o devNull.so devNull.o
(everything works OK)
$ R CMD SHLIB devNull.cpp
g++ -shared -L/usr/local/lib -o devNull.so devNull.o
(everything works OK)
The difficulties start when trying to compile manually. I compile the
2011 Feb 16
1
Timeseries Data Plotted as Monthly Boxplots
Hello, I'm trying to develop a box plot of time series data to look at the
range in the data values over the entire period of record.
My data initially starts out as a list of hourly data, and then I've been
using this code to make this data into the final ts array.
# Read in the station list
stn.list <- read.csv("/home/kbennett/fews/stnlist3", as.is=T, header=F)
# Read in
2008 Jan 31
1
png() and pdf() alignment problems
Hi all!
My aim is to print a thematic map containing
vector output and an image backdrop (six orthophoto tiles).
The size of one image tile is 2500 rows and 2500 columns.
The are six tiles to be printed.
Of course this is far to much for sending the job to a pdf() device.
The raster image would consist of 37500000 squares,
each representing a raster cell.
So my a attempt was to separate vector