Re: [R] Mailing List

2016-04-21 Thread peter dalgaard
> On 21 Apr 2016, at 06:58 , Ogbos Okike wrote: > > Dear All, > I am using R to do my work and thank you very much for developing, > maintaining and making such excellent software available to anyone > that is interested enough to ask for it. > > I have registered at Nabble. I was wondering the

[R] [R-pkgs] Survival 2.39

2016-04-21 Thread Therneau, Terry M., Ph.D.
A new version of the survival package has been released. The biggest change is stronger support for multi-state models, which is an outgrowth of their increasing use in my own practice. Interested users are directed to the "time dependent covariates" vignette for discussion of the tmerge and su

Re: [R] installation problem on Ubuntu

2016-04-21 Thread Ista Zahn
Hi Paul, Please keep the list copied so that others might chime in with suggestions. I'm afraid "no success" is too vague to be useful. What did you do, and what errors did you encounter? Best, Ista On Thu, Apr 21, 2016 at 1:48 PM, Paul Tremblay wrote: > Yes, I tried those instructions as well

Re: [R] installation problem on Ubuntu

2016-04-21 Thread Paul Tremblay
I was able to install the curl library with no problems. However, when I tried to install ggplot (install.packages("ggplot2")), I got the same message as earlier, that R can't load internet.so. Thanks for your help! On Wed, Apr 20, 2016 at 1:24 PM, Tom Wright wrote: > apt-get install curl libcu

Re: [R] Data reshaping with conditions

2016-04-21 Thread Jim Lemon
In R, square brackets [] are called "extraction operators" as they are interpreted so as to "extract" the parts of an object specified by the information within them. Your message contained only part of the line below: AltB<-svdatstr[row,indicesA][svdatstr[row,indicesA] wrote: > Dear Jim, > > I ho

[R] Vegemite Function is Cowardly refusing

2016-04-21 Thread Ansley Silva
R version 3.2.2. library(vegan) I was to look at community tables from my dendrograms and am trying out the vegemite command. This is the error I get: Error in vegemite(apst, apst.clusters) : Cowardly refusing to use longer than 1 char symbols: Use scale I thought the problem was that I was u

Re: [R] installation problem on Ubuntu

2016-04-21 Thread David Winsemius
> On Apr 21, 2016, at 1:23 PM, Paul Tremblay wrote: > > I was able to install the curl library with no problems. However, when I > tried to install ggplot (install.packages("ggplot2")), I got the same > message as earlier, that R can't load internet.so. Is the libcurl directory in your search p

[R] clock24.plot/radial plot

2016-04-21 Thread Ogbos Okike
Dear All, I am trying to generate a circular/radial plot. The script below has a result I am looking for: testlen<-rnorm(24)*2+5 testpos<-0:23+rnorm(24)/4 clock24.plot(testlen,testpos,main="Test Clock24 (lines)",show.grid=FALSE, line.col="green",lwd=3) if(dev.interactive()) par(ask=TRUE) # no

[R] [R-pkgs] rPref 1.0 - Computing Pareto Optima and Database Preferences

2016-04-21 Thread Patrick Roocks
Dear R users, the first 1.0 version of the rPref package is now on CRAN. rPref allows to select the Pareto-optimal tuples from a data set, also called Skylines in the database community. For example, optimal tuples from mtcars according to "high(mpg) * high(hp)" (where "*" is the Pareto opera

[R] plot 8 functions on one graph?

2016-04-21 Thread Judson Blake
I'm trying to use ggplot to make a single graph that plots 8 distributions, one above the other. I created a data.frame with 9 rows. The first is the coordinate along the x-axis. The next is the y-values for the first distribution. After that is the y-values for the next distribution... and so

[R] Error using RPostgreSQL

2016-04-21 Thread Izaak Rogan
Hi, I'm having trouble connecting to my postgreSQL db on Heroku(Amazon) using RPostgreSQL. I've looked through GitHub for people doing the same thing. There are quite a few examples and all look similar to the below: drv <- dbDriver("PostgreSQL") con <- dbConnect( drv, dbnam

[R] EIGEN VECTOR PROBLEM

2016-04-21 Thread MD. HABIBUR RAHMAN
Dear Sir, I am an R user. I am in problem to find eigen vectors in R. For the following matrix eigen vectors are not right. I can not understand why?? For the 1st eigen value and 2nd eigen value are same, but the eigen vectors are not same. *HOW CAN I RESOLVE THE PROBLEM??* *>c=matrix(c

[R] R2BayesX help

2016-04-21 Thread Hairong Gu
Hi, I wonder if anyone can help me with this issue. I am using R2BayesX. It seems that the model can maximally contain 20 interactions. When the number of interaction terms exceed 20, the code stops working. Here is a piece of toy code. rm(list=ls()) library(BayesX) library(R2BayesX) #data gener

Re: [R] clock24.plot/radial plot

2016-04-21 Thread Ulrik Stervbo
I use ggplot2 for all my plotting needs where you can make plots circular with the coord_polar. Maybe this will help you along: http://rstudio-pubs-static.s3.amazonaws.com/3369_998f8b2d788e4a0384ae565c4280aa47.html On Fri, 22 Apr 2016 at 08:31 Ogbos Okike wrote: > Dear All, > I am trying to gene