similar to: problem with installing R pacakges

Displaying 20 results from an estimated 1300 matches similar to: "problem with installing R pacakges"

2010 Dec 02
1
Hmm Topology restriction
Dear List, We are using RHmm to cluster data through HMM. We would like to restrict the transition matrix of HMM, to get hierarchical connections between clusters. But, RHmm doesn't seem to support these restrictions. Can any one suggest a library to do that. Thanks, Kishor
2010 Jul 13
2
Zoo - bug ???
Hi folks, I am confused whether the following is a bug or it is fine Here is the explanation a <- zoo(c(NA,1:9),1:10) Now If I do rollapply(a,FUN=mean,width=3,align="right") I get > rollapply(a,FUN=mean,width=3,align="right") 3 4 5 6 7 8 9 10 NA NA NA NA NA NA NA NA But I shouldn't be getting NA right ? i.e for index 10 I should get (1/3)*(9+8+7)
2011 Aug 29
1
Configuring Proxy: Proxy Authentication Required with --internet2
Hi there I'm trying to configure R to get access to the internet. Using the Internet Explorer a proxy .pac script is used. Reading some older threads I found that I can use the --internet2 option. When choosing a mirror I get the error: "407 Proxy Authentication Required". This seems reasonable since I have to log in when using the IE as well. But where do I enter username and
2007 Apr 17
1
proxy settings
Hi all, I used to connect internet via a proxy. Before update packages I wrote in R Sys.putenv("http_proxy"="http://proxy3.redegov.sp.gov.br:80/") Nevertheless the way the connection is done has changed. For example, in the browser the proxy is not indicated and I have to give an username and a password to have access to internet. I read the FAQ and the help for
2017 Nov 03
2
Extreme bunching of random values from runif with Mersenne-Twister seed
Bill, I have clarified this on SO, and I will copy that clarification in here: "Sure, we tested them on other 8-digit numbers as well & we could not replicate. However, these are honest-to-goodness numbers generated by a non-adversarial system that has no conception of these numbers being used for anything other than a unique key for an entity -- these are not a specially constructed
2017 Nov 03
2
Extreme bunching of random values from runif with Mersenne-Twister seed
Bill, Appreciate the point that both you and Serguei are making, but the sequence in question is not a selected or filtered set. These are values as observed in a sequence from a mechanism described below. The probabilities required to generate this exact sequence in the wild seem staggering to me. T On Fri, Nov 3, 2017 at 11:27 PM, William Dunlap <wdunlap at tibco.com> wrote: >
2017 Nov 03
5
Extreme bunching of random values from runif with Mersenne-Twister seed
This is cross-posted from SO (https://stackoverflow.com/q/47079702/1414455), but I now feel that this needs someone from R-Devel to help understand why this is happening. We are facing a weird situation in our code when using R's [`runif`][1] and setting seed with `set.seed` with the `kind = NULL` option (which resolves, unless I am mistaken, to `kind = "default"`; the default being
2010 Feb 10
1
Installation require proxy settings (2)
Hi Thanks again to Greg, and Prof Ripley. Greg, I was trying to send you an email, but has been unsuccessful. Speaking to someone from our IT deparment, I am trying to follow your advice to implement the settings to my computer (using Windows), by using Control Panel. I have selected System in Control Panel and chose System, Advanced tab, Environmental Variables, and created the user variables:
2002 Jan 19
1
Rsync through proxy using HTTP Basic Authentication?
Is it possible to rsync through a firewall that requires HTTP basic authentication? The RSYNC_PROXY variable seems to correctly direct the request to go through the HTTP proxy server on the firewall, but there's no way to specify a username/password combo. The error message reported by rsync is "bad response from proxy - HTTP/1.1 401 Authentication required", which is not
2012 Sep 11
1
CRAN, install packages problem on networked PC
Dear List, I have a problem connecting to a CRAN mirror through a networked computer running Vista Enterprise on a Dell PC. I added http_proxy=http://gannet/ http_proxy_user=ask to the Target in the R shortcut, completed the username and password in the Proxy Authentication window, but get the following warning: Warning message: In open.connection(con, "r") : unable to resolve
2010 Oct 27
1
[LLVMdev] Thread and LLVM
Hello LLVM developers, I am curious to know, what does the section "Thread and LLVM" in LLVM programmers manual means. I want to do a short project(5 weeks) in Compiler Optimization for Parallel Arch class where I want to support OpenMP like parallel constructs in my language. So does it mean that I can specify thread creation and related thread task directly in LLVM IR. Also does
2010 Apr 10
1
Syntax highliter for Coda and SubethaEdit
> I am looking for a syntax highlighter I can use with Panic's Coda (or > SubEthaEdit, which just work with Coda). Does this exist? > > -- > Puneet Kishor > It does. TheGeekInside has written it, I made a few modifications myself, and you can get it from me (Twitter: c_freitag) or him, I suppose (Twitter: thegeekinside). Christoph
2017 Oct 31
1
SMB 311 Negotiates and then stops
On Tue, 31 Oct 2017 16:06:13 +0000 "Tompkins, Michael via samba" <samba at lists.samba.org> wrote: > Re-sending ... We tend to see a lot of issues with NetApp servers and > SMB 311. Not sure what might be wrong with their response packet, > that 4.6.6 doesn't like. > > ~ Mike > > > -----Original Message----- > From: samba [mailto:samba-bounces at
2017 Nov 03
0
Extreme bunching of random values from runif with Mersenne-Twister seed
The random numbers in a stream initialized with one seed should have about the desired distribution. You don't win by changing the seed all the time. Your seeds caused the first numbers of a bunch of streams to be about the same, but the second and subsequent entries in each stream do look uniformly distributed. You didn't say what your 'upstream process' was, but it is easy to
2005 May 04
3
Wine 20041019 for Suse/Debian (pacakges or build instructions)
Hi, as a Notes user, I'm looking for wine 20041019 for Suse and Debian (kubuntu). If anyone has the packages... I can't build them with Suse because missing XFree86 packages. Any trick ? Thanks. Dripple
2010 Jul 15
1
centos 5 rpm pacakges (add asterisk16-xmpp module)
Hello. Who can add asterisk16-xmpp module to packages.asterisk.org or build asterisk with support xmpp and update packages? Thank You. -- Vasiliy G Tolstov <v.tolstov at selfip.ru> Selfip.Ru
2017 Nov 03
0
Extreme bunching of random values from runif with Mersenne-Twister seed
Another other generator is subject to the same problem with the same probabilitiy. > Filter(function(s){set.seed(s, kind="Knuth-TAOCP-2002");runif(1,17,26)>25.99}, 1:10000) [1] 280 415 826 1372 2224 2544 3270 3594 3809 4116 4236 5018 5692 7043 7212 7364 7747 9256 9491 9568 9886 Bill Dunlap TIBCO Software wdunlap tibco.com On Fri, Nov 3, 2017 at 10:31 AM, Tirthankar
2015 Feb 13
1
Getting strange message in terminal
Dear all when I am login in terminal I am getting following message. declare -x ALL_PROXY="socks://hproxy.iitm.ac.in:3128/" declare -x AMBERHOME="/sware/amber/amber12" declare -x COLORTERM="gnome-terminal" declare -x CPPFLAGS="-I/usr/local/bin/include" declare -x
1999 Nov 10
0
[RHSA-1999:053-01] new NFS server pacakges available (5.2, 4.2)
--------------------------------------------------------------------- Red Hat, Inc. Security Advisory Synopsis: new NFS server packages available (5.2, 4.2) Advisory ID: RHSA-1999:053-01 Issue date: 1999-11-11 Updated on: 1999-11-11 Keywords: nfs-server PATH_MAX NAME_MAX rpc.nfsd Cross references: Bugtraq id #782 --------------------------------------------------------------------- 1.
1999 Jun 17
0
Forw: [RHSA-1999:014-01] New dev, rxvt, screen pacakges for Red Hat Linux 6.0
below. Dan ___________________________________________________________________________ Dan Yocum | Phone: (630) 840-8525 Linux/Unix System Administrator | Fax: (630) 840-6345 Computing Division OSS/FSS | email: yocum@fnal.gov .~. L Fermi National Accelerator Lab | WWW: www-oss.fnal.gov/~yocum/ /V\ I P.O. Box 500 |