Displaying 10 results from an estimated 10 matches for "boker".
Did you mean:
joker
2005 May 07
1
Incorrect libxml2.2.dylib version on Tiger install
...rver 10.4 and R comes up with the
incompatible libxml library message reported by Dan Kelley a few
messages ago. Xcode 2 does not ship with Tiger Server. I installed
the X-Windows code. I can report that the version of libxml2.2 that is
installed in this case is the version 8.0.0 dylib.
[6]sboker at munimula:/usr/lib % ls -l libxml2.2*
-rwxr-xr-x 1 root wheel 1061704 Apr 15 23:44 libxml2.2.6.16.dylib*
-rwxr-xr-x 1 root wheel 1061804 May 6 14:15 libxml2.2.dylib*
I'm working on getting a copy of the Xcode 2 CD. I was surprised it
wasn't in the 10.4 server CD set. I have a...
2001 Apr 20
1
Mac OS-X port of R?
...9;t exist on his server.
Is someone doing this? If not, I'll get busy and see if I
can make a preliminary port. Of course, lots of work would
need to be done to get everything nicely integrated with
OS-X's GUI, but the command line stuff should be pretty
standard Free BSD.
Cheers,
Steve Boker
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) To: r-help-request at stat...
1997 Oct 09
0
R-alpha: [sboker@calliope.psych.nd.edu: Re: S-PLUS on UNIX plans]
--Multipart_Thu_Oct__9_10:41:03_1997-1
Content-Type: text/plain; charset=US-ASCII
In case you did not realize how much this is related to R :
--Multipart_Thu_Oct__9_10:41:03_1997-1
Content-Type: message/rfc822
Return-Path: s-sender@utstat.toronto.edu
From: "Steven M. Boker" <sboker@calliope.psych.nd.edu>
Date: Wed, 8 Oct 97 16:37:05 -0500
To: s-news@utstat.toronto.edu
Subject: Re: S-PLUS on UNIX plans
My apologies for sending this out in non-ascii text format. (blush)
Here is the message.
On Tue, 7 Oct 1997, Gregory R. Warnes wrote:
>I applaud MathSo...
2024 Jan 29
1
print data.frame with a list column
...the full list?
MWE:
df <- data.frame("name" = "A", "bands" = I(list(1:20))) > print(df) name
bands 1 A 1, 2, 3,.... I'd like to avoid the ellipsis in "bands" column,
rather print all list elements. Thanks
--
Micha Silver
Ben Gurion Univ.
Sde Boker, Remote Sensing Lab
cell: +972-523-665918
2024 Jan 29
1
print data.frame with a list column
On Mon, 29 Jan 2024 14:19:21 +0200
Micha Silver <tsvibar at gmail.com> wrote:
> Is there some option to force printing the full list?
> df <- data.frame("name" = "A", "bands" = I(list(1:20)))
format.AsIs is responsible for printing columns produced using I(). It
accepts a "width" argument:
format(x, width = 9999)
# name
2023 Nov 20
1
Calculating volume under polygons
Dear all;
I am trying to calculate volume under each polygon of a shapefile according
to a DEM.
when I run the code, it gives me an error as follows.
"
Error in h(simpleError(msg, call)) :
error in evaluating the argument 'x' in selecting a method for function
'addAttrToGeom': sp supports Z dimension only for POINT and MULTIPOINT.
use `st_zm(...)` to coerce to XY dimensions
2001 Mar 20
2
Help with large datasets
I am a new user of R (1.2.2 on Alpha), but have been using S and then
Splus heavily for about 10 years now. My problem is this. The data
I analyze comprise large sets. Typically I am analyzing 5000 observations
on 90 variables over several hundred subjects. Sometimes 500,000
subjects with 200 variables. Unfortunately, although my Alpha has
1.5 gig of ram, R as it is configured seems to be set
2011 May 18
0
using hglm to fit a gamma GLMM with nested random effects?
...39;m currently getting from the hglm package. Can hglm handle a model
with nested random effects? I don't see an example of one of those in the
package documentation. If it can, can anyone tell me what these errors are
trying to tell me?
If no, I promise I'll let this rest and just take B. Boker's advice to go
with a nice safe modified log transform of the data.
Best
test.gamma<-hglm(fixed=post.f.crwn.length~lg.shigo.av+dbh+leaf.area+
bark.thick.bh+ht.any, random=~1|site/transect/plot, family=Gamma(link=log),
data=rws30.BL)
Error in `contrasts<-`(`*tmp*`, value = "contr.t...
2017 Nov 23
0
How to produce rainfall maps
Thank you Sarah and Mike for your explanations.
My final objective is to produce maps (png image or any kind of extension I can import in LaTeX) where rainfall data are interpolated, using the Inverse Distance method or Kriging.
My input file (pointfile.csv in the reported example) reports the station code, lat and long of the meteorological station and the rainfall value (which might be the
2017 Nov 22
2
How to produce rainfall maps
Fwiw the engine behind geom_raster needs explicit observation-per-row form
for input (with no structural normalization), so conversion to points is
perfectly proper here, albeit confusing in context. (It's closer to what
graphics devices actually use ultimately, but the expansion is laid out
very early in ggplot2 because there's no standard for intermediate forms.)
Cheers, Mike
On Wed,