Displaying 20 results from an estimated 35 matches for "hawkesburi".
Did you mean:
hawkesbury
2011 Sep 06
2
Sweave : some comments disappear
Dear R-helpers,
when I have an R code chunk in a sweave file like this:
<<>>=
x <- 1:10
# this comment disapears
x
# this one does not!
print(x)
#mean
mean(x)
@
The first comment does not appear in the sweaved document, the second
one does. How can this be?
I have tried print=TRUE and keep.source=TRUE, but neither seem to
affect this behavior.
thanks,
Remko
2009 Feb 26
2
interpSpline with dates?
Dear R-helpers,
can I use a POSIXct date as the x variable in interpSpline? The help
page says x and y need to be numeric... is there a workaround?
example:
library(splines)
testdfr <- data.frame(Date=seq(as.POSIXct("2008-08-01"),as.POSIXct("2008-09-01"),
length=10))
testdfr$yvar <- rnorm(10)
sp <- interpSpline(yvar ~ Date, testdfr)
preddfr <-
2008 Mar 18
0
Walds Z in a mixed model
I recently reviewed a paper that used Wald's Z in a mixed model
analysis. The dataset (see end of message for complete dataset) has
individual animals (SAMPLE) from within social groups, from within
geographic regions. Y is the response variable. The paper ran a mixed
model with year and region as fixed effects, group a random effect
nested within region, and sample nested within group. I
2011 Jun 28
2
gam confidence interval (package mgcv)
Dear R-helpers,
I am trying to construct a confidence interval on a prediction of a
gam fit. I have the Wood (2006) book, and section 5.2.7 seems relevant
but I am not able to apply that to this, different, problem.
Any help is appreciated!
Basically I have a function Y = f(X) for two different treatments A
and B. I am interested in the treatment ratios : Y(treatment = B) /
Y(treatment = A) as
2009 Aug 19
2
RGoogleDocs/RCurl through proxy
Dear list,
I am trying to use RGoogleDocs, but I am connecting through a proxy server.
I know RCurl is used for the connection, which should be able to deal
with proxies and such.
How do I set this up for RCurl? And can I use those settings with
RGoogleDocs as well?
I have the name of the proxy server and the port number.
(Windows XP).
thanks,
Remko
2010 Jun 02
2
Faster union of polygons?
Dear R-helpers,
thanks for yesterday's speeding-up tip. Here is my next query:
I have lots of polygons (not necessarily convex ones, and they never
have holes) given by x,y coordinates.
I want to get the polygon that is the union of these polygons. This is
my current method, but I am hoping there is a faster method (up to
thousands of polygons, each with ca. 40 xy points).
Example:
2009 Apr 24
1
Box-counting dimension and package 'fdim'
Dear R-helpers,
I am looking for an implementation of the box-counting algorithm to
estimate the box dimension of a cloud of points in 3D (aka fractal
dimension, or similarity dimension).
The package 'fdim' might be doing this, but the documentation is awful
and I don't understand what is what there.
Does anyone know of an implementation of this algorithm in R, or
elsewhere, or
2009 Jul 20
1
Problem with as.POSIXct on dates object
Dear R-helpers,
I have a problem converting an object made with the 'chron' function
to a POSIXct object:
# Make date based on DOY
dat <- chron(dates=232, origin.=c(month=1, day=1, year=2008))
dat
#[1] 08/20/08
# Converting to POSIXct uses current timezone (Sydney):
as.POSIXct(dat)
#[1] "2008-08-20 10:00:00 EST"
# Setting GMT timezone has no effect?
as.POSIXct(dat,
2010 Mar 30
1
SHLIB not working (Win Vista)
Dear R-helpers,
I tried to build a DLL like I have done so many times, but this time
on my new machine, but it gives the erorr:
(from cmd window)
>R CMD SHLIB Boxcnt.f
MAKE Version 5.2 Copyright (c) 1987, 2000 Borland
Error c:/PROGRA~1/R/R-210~1.1/share/make/winshlib.mk 4: Command syntax error
*** 1 errors during make ***
The error is not in my Fortran file, because I also tried other files
2009 Feb 13
2
Running examples failed (but there are none).
Dear R-helpers,
making a package (windowsXP), that includes a bunch of functions, but
none have examples (all example code is within \dontrun{} blocks).
I do R CMD check Maeswrap, all bits get OK-ed, except:
"Running examples in 'Maeswrap-Ex.R' failed."
When I run the 'Maeswrap-Ex.R' file myself, there are no problems.
Any pointers?
thanks
Remko
2009 Oct 20
1
system() or shell() with python script
Hi all,
I am having some problems calling a python script from R that resides
in a folder that is in the path (WindowsXP):
> system("quickPadTool.py")
Warning message:
In system("quickPadTool.py") : quickPadTool.py not found
# I also tried 'shell' (and shell.exec as well).
> shell("quickPadTool.py")
'quickPadTool.py' is not recognized as an
2010 Oct 19
1
DLL not found
Dear R-helpers,
I have a fresh installation of windows vista, and R 2.12.0 (session info below).
Problem:
> require(sp)
Loading required package: sp
Error in library.dynam(lib, package, package.lib) :
DLL 'lattice' not found: maybe not installed for this architecture?
> require(lattice)
Loading required package: lattice
Failed with error: ?package 'lattice' is not
2010 Oct 25
2
R-Fortran question (multiple subroutines)
Dear R-helpers,
apologies if this is somewhere in a manual, I have not been able to
find anything relevant. I run Windows Vista.
I have some Fortran code in a subroutine, and have no problem calling
this from R with .Fortran, compiling the code either with 'R CMD
SHLIB' or independently with gfortran.
But is it possible to have more than one subroutine in my source file,
one depending
2011 May 12
2
Exporting interactive 3D plots with axes and labels
Hi,
I have a question about exporting interactive 3D plots. I use the following code to plot a contour of a trivariate normal distribution:
library(mvtnorm)
library(rgl)
library(misc3d)
n=25
x=seq(-3,3,length=n)
X=cbind(rep(x,each=n**2),rep(rep(x,each=n),n),rep(x,n**2))
p=array(dmvnorm(X,sigma=diag(3)*0.5+0.5),c(n,n,n))
contour3d(p,x,x,x,level=mean(p))
lim=c(-3,3)
2009 Aug 04
1
Build a dataframe row by row?
Hi,
Time for another of my "newbie" questions.
Is it possible to build up a data.frame "row by row" as I go
I'm going to be running a bunch of experiments (many in a loop) to test
different things. I'm using AUC as my main performance measure.
My thought was to add a row to a data.frame for each iteration and then
have a nice summary report at the end.
I found
2009 Dec 01
1
vector as data.frame element?
It seems that an vector or other non elemental data type can not be
assigned to an element in the data.frame. I'm wondering what is the
walk around.
> li=data.frame(a=c(0,1), b=c('x','y'))
> li$b[[1]]= 'x'
> li$b[[2]]<- c('y','z')
Error in li$b[[2]] <- c("y", "z") :
more elements supplied than there are to replace
2009 Jan 22
2
plot: abline() - define line length
Hi,
is there a way to define, that a line drawn via abline() should only
go from for example -2 to 1 on the x-axis (with something working
similiar to xlim()) ?
thanks for any help!
2009 Feb 11
1
How to tell if lattice is current device?
Dear R-helpers,
I have a function that adds some segments to the current plot, but if
I the current plot is made with any of the lattice functions (in my
case, levelplot),
I should use lsegments rather than segments.
How can I tell if the current device was made with plot() or e.g.
levelplot() or another lattice function?
dev.cur() does not help me, it just tells me "windows 2".
2009 Feb 13
3
R Help
Hi,
I have a list of numbers (classified as a list) that contains integer(0)
empty vectors. How do I convert those integer(0) into NAs? Thanks
[[alternative HTML version deleted]]
2009 Sep 14
2
How to set default plotting colors by treatment?
Dear R-helpers,
I have a number of dataframes that looks something like this:
mydfr <- data.frame(treatment=c(rep("A",3),rep("B",3)), Xmeas=1:6,
Ymeas=c(2,4,3,3,5,6))
# except with many more variables, which I plot all the time colored
by treatment to quickly check things:
with(mydfr, plot(Xmeas, Ymeas, pch=19, col=c("blue","red")[treatment]))
# I