similar to: Where do I report CRAN mirror problems?

Displaying 20 results from an estimated 50000 matches similar to: "Where do I report CRAN mirror problems?"

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
2013 Jan 27
1
CRAN-only "Hash Sum mismatch"
summary: updating R .deb's from recommended mirrors @ http://cran.r-project.org/mirrors.html has allowed me to keep my R version up-to-date for many months. But since Friday (25 Jan) I get errors like Failed to fetch <mirror URI/>/squeeze-cran/<deb name/>: Hash Sum mismatch but can install .deb's from non-CRAN sources. No fix from sudo rm /var/cache/apt/pkgcache.bin sudo
2010 May 26
2
cran2deb Packages.bz2 Hash Sum mismatch
Hi, I'm using Ubuntu 9.10 amd64 with cran2deb packages (I know it's meant for Debian, it's worked fine for me for many months). Recently apt-get update has to started to complain: ... Hit http://debian.cran.r-project.org testing/ Release Get:1 http://debian.cran.r-project.org testing/ Packages [515kB] Fetched 1B in 3s (0B/s) W: Failed to fetch
2006 Sep 01
6
ads_kinit_password failed: Preauthentication failed
Hi, I am have compiled samba 3.0.23b (MIT Kerberos 1.5.1) on Solaris 10. I am unable to join the ads domain. net ads testjoin returns the following output... [2006/09/01 17:25:17, 0] libads/kerberos.c:ads_kinit_password(208) kerberos_kinit_password ARTEMISIA$@UNIMELB.EDU.AU failed: Preauthentication failed [2006/09/01 17:25:17, 0] libads/kerberos.c:ads_kinit_password(208)
2008 Jul 07
5
How can i do an automatic upgrade of R 2.5.1 to R 2.7.1
Hi, I am aware this is somehow FAQ question but I ve been searching from R-cran archive about the related matter and could not find anything closer to this. I want to upgrade my R version from 2.5.1. to 2.7.1. What is the best way to load the latest one apart from installing the packages (tar.gz) from http://cran.ms.unimelb.edu.au/? Please help. Thanks.. [[alternative HTML version deleted]]
2011 Jun 14
2
Off-topic: (Simple?) Random Sampling when n is a random variable
Hi everyone, I'm involved in a discussion with a colleague. He suggested a sample design for a finite-sized process that (to all intents and purposes) involves tossing a coin and examining the unit if the coin shows Heads. I should emphasize that we're both approaching the problem from a design-based sampling theory point of view. So I have no argument about the appropriateness of the
2016 Oct 18
4
samba 4.5.0 strange windows 10 issue | incorrect password
On Tue, 18 Oct 2016 08:09:10 +0100 Rowland Penny via samba <samba at lists.samba.org> wrote: > > See inline comments: > > On Mon, 17 Oct 2016 18:06:36 -0700 (PDT) > yabko via samba <samba at lists.samba.org> wrote: > > > Well, all I gained from that is you haven't got a PDC, it is an AD > > DC. > > > > What OS are you using ? > >
2023 Jan 31
1
[EXT] How to calculate the derivatives at each data point?
Try something like with(df, predict(smooth.spline(x = altitude, y = atm_values), deriv = 1)) Cheers, Andrew -- Andrew Robinson Chief Executive Officer, CEBRA and Professor of Biosecurity, School/s of BioSciences and Mathematics & Statistics University of Melbourne, VIC 3010 Australia Tel: (+61) 0403 138 955 Email: apro at unimelb.edu.au Website: https://researchers.ms.unimelb.edu.au/~apro
2006 Jun 13
3
Multiple lag.plots per page
Hi, I'm trying to plot several lag.plots on a page, however the second plot replaces the first one (although it only takes up the upper half as it should): par(mfrow=c(2,1)) a<-sin(1:100) b<-cos(1:100) lag.plot(a) lag.plot(b) What's the trick to this? I'm using R 2.2.1 (2005-12-20 r36812) on Ubuntu Linux. Thanks, Gad -- Gad Abraham Department of Mathematics and
2011 Mar 05
3
R Statistical Package Installation
Dear R-project team, I have tried but could not install the R statistical package (http://cran.ms.unimelb.edu.au/ ) even after the help of my institute's IT personnel. The setup file could not be downloaded. The latest file R-2.12.2.tar.gz<http://cran.ms.unimelb.edu.au/src/base/R-2/R-2.12.2.tar.gz> does not start installation wizard. Kindly extend the technical support. Best regards.
2006 Jun 23
2
Time series labeling with Zoo
Hi, I'm using zoo because it can automatically label the months of a time series composed of daily observations. This works well for certain time series lengths, but not for others, e.g.: While: > library(zoo) > plot(zoo(runif(10), as.Date("2005-06-01") + 0:50)) Shows up the months and day of month, > plot(zoo(runif(10), as.Date("2005-06-01") + 0:380))
2007 Mar 16
3
ARIMA standard error
Hi, Can anyone explain how the standard error in arima() is calculated? Also, how can I extract it from the Arima object? I don't see it in there. > x <- rnorm(1000) > a <- arima(x, order = c(4, 0, 0)) > a Call: arima(x = x, order = c(4, 0, 0)) Coefficients: ar1 ar2 ar3 ar4 intercept -0.0451 0.0448 0.0139 -0.0688 0.0010 s.e.
2006 Feb 19
3
Changing predictor order in lm()
Dear community, can anyone provide a snippet of code to force the lm() to fit a model with terms in the formula in an arbitrary order? I am interested in something like: lm(y ~ A * B + C, data=data) where the interaction of A and B should be in the formula before C. My goal is to simplify my presentation of models using the anova() statement. I have found that this should be possible using
2008 Apr 03
1
Lapack error in Design:::ols
Hi, I'm trying to use Frank Harrell's Design:::ols function to do regression of y (numeric) on the interaction of two factors (x1 and x2), but Lapack throws an error: > library(Design) ... > load(url("http://www.csse.unimelb.edu.au/~gabraham/x")) > ols(y ~ x1 * x2, data=x) Error in chol2inv(fit$qr$qr) : 'size' cannot exceed nrow(x) = 20 > traceback()
2002 Apr 05
1
is it a bug or a feature? re:time zone differences, laptops, and suggestion for a new option
It's much easier than that. The linux box keeps time in GMT, and displays it in the configured time zone. Try this, on the linux box: "touch testfile ls -l testfile TZ=EST5 export TZ ls -l testfile" You will see the displayed time change, because it's being translated from epoch time (that's what I call it, anyway) - seconds since midnight, January 1, 1970. Your windows
2008 May 16
1
Dimensions of svd V matrix
Hi, I'm trying to do PCA on a n by p wide matrix (n < p), and I'd like to get more principal components than there are rows. However, svd() only returns a V matrix of with n columns (instead of p) unless the argument nv=p is set (prcomp calls svd without setting it). Moreover, the eigenvalues returned are always min(n, p) instead of p, even if nv is set: > x <-
2005 Sep 08
1
Creating very small plots (2.5 cm wide) in Sweave
Hi everyone, I was wondering if anyone has any code they could share for creating thumbnail plots in Sweave. For example, I'd like a plot like the following: y <- c(40, 46, 39, 44, 23, 36, 70, 39, 30, 73, 53, 74) x <- c(6, 4, 3, 6, 1, 5, 6, 2, 1, 8, 4, 6) opar <- par(mar=c(3,3,0,0)) plot(x, y, xlab="", ylab="") abline(h=mean(y), col="red") par(opar)
2013 Apr 19
1
ldbsearch/kerberos issue
Samba 4.0.5, Debian 6.0 I can successfully perform an ldbsearch on the Samba ldb by specifying the -U parameter: geoffc at test-dc03: ~ $ /usr/local/samba/bin/ldbsearch -H ldap://localhost -U geoffc 'CN=IT' objectClass Password for [STAFF\geoffc]: # record 1 dn: CN=IT,CN=Users,DC=testad2,DC=trinity,DC=unimelb,DC=edu,DC=au objectClass: top objectClass:
2012 Apr 11
1
Dependency problem bug with r-cran-vr
Hi, I was trying to connect GRASS with R, following the guidelines described here: http://grass.osgeo.org/wiki/R_statistics The line in my /etc/apt/sources.list is like: deb http://ftp.iitm.ac.in/cran/bin/linux/debian squeeze-cran/ But when I tried to install r-cran-vr, I got an unmet dependency problem with r-cran-mass and r-cran-class. But these two packages were already installed. Then why
2009 Nov 27
2
Symmetric Matrix classes
Hi, I'd like to store large covariance matrices using Matrix classes. dsyMatrix seems like the right one, but I want to specify just the upper/lower triangle and diagonal and not have to instantiate a huge n^2 vector just for the sake of having half of it ignored: Dumb example: M <- new("dsyMatrix", uplo="U", x=rnorm(1e4), Dim=as.integer(c(100, 100))) diag(M) <- 1