R is a free, open source programming language and software environment for statistical computing, bioinformatics and graphics. It is advised to supplement your question with a reproducible example (http://stackoverflow.com/q/5963269); for statistical questions please use crossvalidated.com.
2
votes
0answers
379 views
How to plot random intercept and slope model in R
Hello I have a question about how to plot a random intercept and slopes model using nlme in R. I have (with help of Zuur et al., 2009) figured out how to plot a model with random intercepts, but ...
2
votes
0answers
186 views
Tktable : could not be found in R
I try to use tcltk in R, but the package Tktable could not be found.
> library("tcltk")
Loading Tcl/Tk... OK
> tclRequire("Tktable")
[1] FALSE
Warning :
In tclRequire("Tktable") : the package ...
2
votes
0answers
43 views
Error accessing large data frame
I'm reading a dataframe and I have the message fread(273) failed on DBF file repeated many times. The reading code is simple:
dataset <- read.dbf(fl, as.is = FALSE)
The dbf file I'm reading is ...
2
votes
0answers
133 views
socket unstable in R
I am trying to let two R programs communicate by socket.
here is the code:
program A
con <- tryCatch(socketConnection(port=10170),error=function(e) return(FALSE))
repeat
{
x <- ...
2
votes
0answers
198 views
Error in as.dendrogram
I am trying to make a dendrpgram using large data
I am using the stats, phyclust libraries,
distances <- phyclust.edist(Data[,],edist.model = .edist.model[3])
dataHClust <- hclust(distances, ...
2
votes
0answers
148 views
R googleVis scatter plot string in rollover
I have a scatter plot using googleVis and I'd like to define the text shown when I hover over a data point. When I try to use non-numeric data I get an error message. Here's the code:
...
2
votes
0answers
99 views
Tree structure in R
Is there a package that implements a tree structure in R ? Every node can have multiple childs (so it's not a binary tree).
2
votes
0answers
83 views
“good enough” location field mapping to geographic heatmap in R
I'm trying to create a heatmap of users' location in various world regions in R, but the dataset I'm working with contained a free text location field for users to fill on their own -- hence the ...
2
votes
0answers
108 views
gtable structure element description
If I create a gtable and look at some of the elements, I see for instance:
test<-data.frame(x=1:20, y=21:40, facet.a=rep(c(1,2),10), facet.b=rep(c(1,2), each=20))
p <- qplot(data=test, x=x, ...
2
votes
0answers
53 views
parallel process common plot
I am using doSNOW package in R and have a parallel process.
I want to create a plot that will be refreshed as each thread computes the datapoint so I can live monitor my process. How can I do this in ...
2
votes
0answers
96 views
getting match.call() to work with *apply & plyr? (re: Referencing a dataframe recursively)
The purpose of the functions below are to allow for self-referencing assignments more easily. (As suggested here: Referencing a dataframe recursively )
So that instead of
# this
...
2
votes
0answers
84 views
Describing Frequency & Period with zoo
I have weekly sales observations for several products. I then create a zoo object to hold these data but can't make the frequency/cycle work as I intend. Data is available at Dropbox (asr.csv).
I've ...
2
votes
0answers
143 views
how to get rJava 0.9-3 to work on OS X 10.7.4 with Oracle Java 1.7?
Is there anyone out there who has managed to get rJava 0.9-3 to work on OS X 10.7.4 with Oracle Java 1.7?
R version 2.15.2 (2012-10-26) -- "Trick or Treat" Platform
x86_64-apple-darwin9.8.0/x86_64 ...
2
votes
0answers
77 views
Display dynamic googleVis output in a members only Wordpress blog
I am creating a subscription based Wordpress blog and will be looking to display R googleVis output (as HTML) that will update about every 30 minutes. There are already a couple questions/answers on ...
2
votes
0answers
240 views
R and makePSOCKcluter EC2 socketConnection
I would like to be able to connect my Mac to my EC2 instances to carry out parallel processing on AWS via the parallel package using makePSOCKcluster or makeSOCKCluster.
At the moment my attempt ...
2
votes
0answers
83 views
Voting/Ranking Ranked Pair method
Currently I try to understand the Ranked Pairs method.
From the Wikipedia entry I don't really get how to create the matrix of pairwise comparison.
This explanation helped me to understand one way to ...
2
votes
0answers
257 views
Set y-axis limits and tick marks in R latticeExtra DoubleYscale plot?
How do I set y-axis limits and tick marks in a R latticeExtra DoubleYscale plot? I want the primary and secondary y-axis scales and tick marks to be the same in both xyplots. Below is my R code. ...
2
votes
0answers
245 views
R SNA: Creating a adjacency matrix containing all actors but only values of a subset
my problem is the following:
I am using the R SNA package for social network analysis. Lets say, my starting point is an edgelist with the following characteristics. Every row contains a firm name, ...
2
votes
0answers
96 views
Unconstrained Design matrix for factorial experiment in R
I want to create an unconstrained design matrix for factorial experiment in R and the following code gives me the desired matrix. But the code requires separate model.matrix command for each factor as ...
2
votes
0answers
137 views
parameters CI linear mixed model: profile function using lme4 or lme4a
I am trying to calculate the 95% confidence intervals of a linear mixed model calculated with lmer() function from lme4 package. Reading Baker (2010) there is a way to calcuilate the cononfidence ...
2
votes
0answers
375 views
Install kernlab package in R
im trying to install kernlab package on a SLES 11 SP1. I installed all prerequisite packages eg. gcc-fortran...
After starting the installation with install.packages("kernlab") I get the following ...
2
votes
0answers
128 views
Iterating a Finite Difference Scheme in a 2-D Array with 3 Boundary Conditions
In an intermediary step to completing my undergraduate thesis, I'm attempting to solve the Black-Scholes PDE in R by an explicit finite difference scheme. As of now, I keep getting hung up on ...
2
votes
0answers
44 views
Managing a handle-function in R
I'm creating a package that will manage a API connection (oauth2).
The package connects to the API, gets some ticket values and stores them in a global function handle:
handle <- ...
2
votes
0answers
213 views
Optimization in R - nonlinear utility function with non-linear constraints
Am trying to find vector β to maximize function
subject to
(a)
and
(b) all elements of β should be non-negative,
with β, μ are vectors of length 15, and M is a 15x15 covariance matrix (μ ...
2
votes
0answers
70 views
gWidgetsWWW LocalServerStart() through JRI
I'm trying to present interactive R graphics on the web using gWidgetsWWW. When using my standard R command line this all works perfectly. The code I use is for example:
> library(gWidgetsWWW)
...
2
votes
0answers
54 views
I want to extract coordinate data from NetLogo using the RNetLogo package
I'm using the sample Flocking code as an example to play with if anyone is familiar
NLCommand("set population 1")
NLCommand("setup")
nruns <- 10
timedata <- list()
for(i in 1:nruns) {
...
2
votes
0answers
157 views
Speed up sqlFetch()
I am working with an Oracle database and like to fetch a table with 30 million records.
library(RODBC)
ch <- odbcConnect("test", uid="test_user",
pwd="test_pwd",
...
2
votes
0answers
184 views
Factor vs. ordered factor?
Here is the problem that I'm trying to solve. I'm using burn dataset from KMsurv library and I'm trying to fit a simple survival model with two simple covariates. One of these predictors is an ordered ...
2
votes
0answers
117 views
Copying R5 reference classes with a locked variable
I can copy an R5 reference class when I have not locked one of the fields, but it does not copy if one of the fields is locked. Example code follows (with the lock call commented out). My question: ...
2
votes
0answers
43 views
Default values for lambda in Sparse Group Lasso(SGL) in R?
How are lambdas chosen by the SGL package if left blank? I am referring to the comment below in the pdf manual.
"A user specified sequence of lambda values for fitting. We recommend
leaving this ...
2
votes
0answers
74 views
How to write a cached variable evaluator?
Edit:
I have a kludgy piece of code that looks like this:
readcsvfile()
dopreprocessingoncsvfile()
readanothercsvfile()
moreprocessing()
# etc ...
Over a few days, this has gradually got longer ...
2
votes
0answers
110 views
Web-service acess with R and SSOAP from cbr.ru
I'm trying to retrievie data to R from CBR (Russia's Central Bank - cbr.ru) via their web-servive platform. Basically, I was inspired by a code from this example using SSOAP package for R.
wsdl ...
2
votes
0answers
132 views
Error while reading data as transactions
I'm trying to find out association rules from my transactions data.
The format of file looks like:
TransactionID | ProductID
----------------------------
3716280 337
3716280 ...
2
votes
0answers
105 views
R parallel computing with snowfall - writing to files from separate workers
I am using the snowfall 1.84 package for parallel computing and would like each worker to write data to its own separate file during the computation. Is this possible ? if so how ?
I am using the ...
2
votes
0answers
111 views
How to download article from WSJ with RCurl
I am trying to use RCurl along with XML package to download and mine article from the WSJ (wall street journal). However, whenever i use getURL from RCurl, i do get the version of the article which is ...
2
votes
0answers
78 views
optimization in R across multiple 'areas'
I am building a bioeconomic model of a fishery with multiple areas and fleets.
I need to add a cost function to the objective function.
The cost function derivative is:
...
2
votes
0answers
129 views
How to plot R barplot with Chinese text by setting locale on Ubuntu?
This is with ref to my previous question on this forum, How to plot bar plot with Chinese names in input file?
I have already edited my sessionInfo like so:
> sessionInfo()
R version 2.14.1 ...
2
votes
0answers
176 views
unwanted axis w/ facet_wrap with scales = “free_x”
Maybe this is a duplicate not sure (LINK).
I want to use coord_flip, facet_wrap and the argument scales = "free". If one does so this adds unwanted scales in between the facets that are unnecessary. ...
2
votes
0answers
81 views
wrong color conversion with colorspace package
Look at the following example:
> library(colorspace)
> # convert color with coordinates (0.2,0.3,0.4) in the RGB space into a character string:
> ( x <- hex(RGB(0.2,0.3,0.4)) )
[1] ...
2
votes
0answers
185 views
Is there an R package to parse geophysical “Log Ascii Standard” Files (.las files)?
Is there an R package that can read .las files, i.e. Schlumberger Log Ascii standard files?
It should be capable of reading las 2.0 files.
Please note:
I am not talking about LIDAR .las files here. ...
2
votes
0answers
108 views
Debug authorisation in R curl using NTLM
I am trying to access a URL from a windows (sharepoint 2007) web server within a corporate network. I'm using R and curl but can't seem to get the authorization part right. (There is no proxy or ...
2
votes
0answers
175 views
using 64bit mysql with R 32bit (64Bit Win7 )
RMySQL library works at R-64bit version.
but still it doesn't work with the 32bit R version
because I'm using statconn tools(DCOM, rcom) which only work with the 32 version R,
I need to access MySQL ...
2
votes
0answers
150 views
How can I bootstrap a Deming regression estimates in R?
i am working on a consulting problem that involves error-in-variables (Deming) regression to compare two measurement techniques. The details are given in a question I asked on CV. Here is the link. ...
2
votes
0answers
158 views
what could be the best tool or package to perform PCA on very large datasets ?
This might seem like a similar question which was asked in this URL (http://stackoverflow.com/questions/10718455/apply-pca-on-very-large-sparse-matrix).
But I am still not able to get my answer for ...
2
votes
0answers
238 views
Computing correlation coefficients for an AR(2) process in R
I have a time series problem that I could easily work out manually, only it would take kind of a long time since I have 4 different AR(2) processes and want to calculate at least 20 lags for each.
...
2
votes
0answers
388 views
AIC with weighted nonlinear regression (nls)
I encounter some discrepancies when comparing the deviance of a weighted and unweigthed model with the AIC values.
A general example (from ‘nls’):
DNase1 <- subset(DNase, Run == 1)
fm1DNase1 <- ...
2
votes
0answers
169 views
Documenting S4 methods with roxygen2: clearly distinguishing methods in help files
Before you aim and shoot
I'm aware that this question is closely related to this post. In fact, I followed the advice given in the various answers, but still feel that the resulting help file is a ...
2
votes
0answers
245 views
r - How to clear memory used by rJava?
I am using xlsx package to create workbook, worksheet, write data to the sheet and then save the workbook. However, when I repeat this set of actions for several times, I start to the error message:
...
2
votes
0answers
117 views
Forcing a reference category in logistic model in R
Using R, I am running a logistic model and need to include an interaction term in the following fashion, where A is categorical, and B, continuous.
Y ~ A + B + normalized(B):A
My problem is that ...
2
votes
0answers
94 views
Bagplot function error
I am using the bagplot function within the aplpack package and often get this error:
Error in chull(pg[, 1], pg[, 2]) :
NA/NaN/Inf in foreign function call (arg 2)
Here's an example of data ...
