Displaying 20 results from an estimated 900 matches similar to: "sm packcage compilation problem fixed"
2003 Feb 07
2
1.7.0 build error in debian stable i386
I'm running debian stable, with the addition of tcl8.4-dev, tk8.4-dev from
testing.
debian/rules build gives this ...
gcc -shared -o methods.so do_substitute_direct.o methods_list_dispatch.o
method_meta_data.o slot.o class_support.o tests.o -L../../../../bin -lR
mkdir -p -- ../../../../library/methods/libs
make[6]: Leaving directory `/home/king/R/source/src/library/methods/src'
2003 Mar 18
3
Package installation when $RHOME is not writable (win)
I'm using R in a student lab with machines running win XP. $RHOME is not
writable by the students. How do I set this up so that they can install
packages?
Thanks,
Robert.
----
Robert King, Statistics, School of Mathematical & Physical Sciences,
University of Newcastle, Australia
Room V133 ph +61 2 4921 5548
Robert.King at newcastle.edu.au
2003 Jan 30
0
Re: Regarding Installation
Its possible to corrupt the binary if you actually open it in a browser,
and the browser tries to display it, and then you save it.
Have you tried right-clicking on the link to download it?
Robert.
On Thu, 30 Jan 2003, saicharan komanduru wrote:
> Hi,
> I copied the binary setup file for windows. I tried
> to install but it says the binary is corrupted. I
> tried getting the files
2003 May 13
1
range checking
I'm tidying up the gld package at the moment, and the following is my best
effort at checking if values are outside the range of the function
(which is [0,1] in this case).
It seems incredibly messy - is there something better?
outside.range <- !as.logical(((p<1)*(p>0))|(sapply(p,
all.equal,1)=="TRUE")|(sapply(p, all.equal, 0)=="TRUE"))
----
Robert King,
2009 Oct 12
0
package manual without index? check breaks with - LaTeX errors when creating PDF version.
Hello,
What am I doing wrong about creating an index for my package documentation?
Using 2.9.2, I am checking the gld package. It reports the following (all
earlier lines OK):
* checking PDF version of manual ... WARNING
LaTeX errors when creating PDF version.
This typically indicates Rd problems.
* checking PDF version of manual without index ... ERROR
When I look in the gld.Rcheck
2008 Sep 03
2
Does rattle depend on testing's ggobi?
Hello All,
I'm trying to install rattle from source on a AMD64 machine running etch. I
have two packages installed from the etch backport
(r-cran-rodbc and r-cran-rsprng) but all the rest installed from source. I'm
trying to install rattle, but
install.packages("rattle", dependencies=TRUE)
Tries to install rggobi, which complains about the version of libggobi. Does
2004 Apr 21
2
Assigning functions in Rprofile
I use the ugly hack shown below as my .Rprofile (mainly because I couldn't
find any other way to spawn a new mozilla window on starting R or calling
help.start(), but then send all the help html documents to that new
window).
With a recent change from a cvs checkout to the released 1.9.0 I find that
the new hs() appears if there is nothing of that name in .RData, but if
there is the old hs()
2006 Sep 19
1
R CMD check fails at package dependencies check on Fedora Core 5, works on other systems
I'm testing a FC5 machine for use in a student lab. R 2.3.1 is installed and
seems to work fine. There is one peculiarity - the logins are authenticating
to a server, and a "verbose" flag is set somewhere, leading to lots of
spurious messages like this
request done: ld 0xa227598 msgid 1
which may be confusing R.
However, R CMD check seems to fail for packages with no
2009 Apr 29
1
etch AMD64 debs missing
Thanks Piet & Johannes for the backports.
There seems to be a problem with the files for the amd64 architecture getting
out.
Here is my apt-get update
Get:1 http://cran.ms.unimelb.edu.au etch-cran/ Release.gpg [189B]
Hit http://cran.ms.unimelb.edu.au etch-cran/ Release
Ign http://cran.ms.unimelb.edu.au etch-cran/ Packages/DiffIndex
Ign http://cran.ms.unimelb.edu.au etch-cran/ Packages
2004 Jun 03
3
Problem with mgcv PACKAGES file format?
Hello All,
I'm getting this error (Version: 1.9.0-1 on a debian system)
> update.packages("mgcv")
trying URL `ftp://mirror.aarnet.edu.au/pub/cran/src/contrib/PACKAGES'
ftp data connection made, file length 169516 bytes
opened URL
.......... .......... .......... .......... ..........
.......... .......... .......... .......... ..........
.......... .......... ..........
2011 Apr 19
3
zero fill empty cell in data.frame
Hello List,
I have a data frame like:
V130 V131 V132 V133 V134 V135 V136
1 0 0 0.9 0 0.9 0 0
2 0 0 0 0 0 0.8
3 0 0 0 0 0.9 0 0
4 0.9 0 0 0 0 0 0.9
5 0 0 0
6 0 0 0 0.9 0 0 0.9
7 0 0 0.8 0 0 0 0
8 0.9 0 0 0.9 0.8 0
9 0 0 0 0.9 0.9 0 0
10 0 0 0 0 0 0 0.9
2007 Nov 25
0
Minimum GCC version to support?
Currently we (attempt to) support building Xapian with any GCC >= 2.95.
However, I only have access to Debian's GCC "2.95.4" (which is 2.95.3
plus patches) and <sstream> was added in GCC 2.95.3, so the fallback
code for when <sstream> isn't available probably hasn't actually been
exercised for a while.
I'm pretty sure the non-<sstream> build is now
2008 Jul 14
2
long data frame selection error
Hello,
I am trying to select the following headers from a data frame but when I try
and run the command it executes halfway through and give me an error at V188
and V359.
Temp <- data.frame(V4, V5, V6, V7, V8, V9, V10, V11, V12, V13, V14, V15,
V16, V17, V18, V19, V20, V21, V22, V23, V24, V25, V26, V27, V28, V29, V30,
V31, V32, V33, V34, V35, V36, V37, V38, V39, V40, V41, V42, V43, V44, V45,
2005 Jan 25
3
multi-class classification using rpart
Hi,
I am trying to make a multi-class classification tree by using rpart.
I used MASS package'd data: fgl to test and it works well.
However, when I used my small-sampled data as below, the program seems
to take forever. I am not sure if it is due to slowness or there is
something wrong with my codes or data manipulation.
Please be advised !
The data is described as the output from str()
2006 Feb 01
2
sort columns
Hi.
I have a simple (I think) question
My dataset have these variables:
names(data)
[1] "v1" "v2" "v3" "v4" "v5" "v6" "v7" "v8" "v9" "v10"
"v11" "v12" "v13" "v14" "v15" "v16" "v17"
2007 Aug 16
1
Question about sm.options & sm.survival
Hi, there:
It's my first time to post question in this forum, so thanks for your
tolerance if my question is too naive. I am using a nonparametric smoothing
procedure in sm package to generate smoothed survival curves for continuous
covariate. I want to truncate the suvival curve and only display the part
with covariate value between 0 and 7. The following is the code I wrote:
2007 Aug 14
0
Winbind fails to refresh Kerberos tickets (3.0.25b - Fedora Core 5) - 2nd Try
This is the second attempt at sending this. Apologies for any duplicates.
I've got Winbind up and running to authenticate our users against our AD
and to save kerberos tickets. I have used the "winbind refresh tickets =
yes" setting expecting this to renew these kerberos tickets before they
expire. This does not appear to work. Gnome will pop up a dialog box
saying that the
2009 Sep 05
1
several questions about R graphic properties
I have a several questions about R graphic properties.
I use a "barplot2" function for creating plots with error bars. My data include species' names in first column, and I need make plots for each species. I know how to select species for each plot:
D<-read.table("FD_R.txt", h=T)
Dens<-D[D[,1]=="Sit.eur",]
but I want to make a cycle which will
2008 May 31
2
tolstoi.newcastle dead?
Anyone know what's up w/ tolstoi.newcast.edu.au (home of the threaded
R-help archives)? I've got a "can't connect" for several days now.
Carl
2008 Oct 27
1
R 2.8.0 for Debian etch
Dear all,
It is my pleasure to announce the immediate availability of R 2.8.0
for the current Debian stable release on CRAN. Source packages and
binaries for i386 and amd64 are at your disposal.
I also updated the README to include a short howto for using R 2.8.0 from
unstable on testing (lenny), which is currently frozen. This currently pulls
the current pcre from unstable, next to the current