Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

42 results for “from:Ranae”

rfImpute() error-- while missing imputation --
Sandeep Rana · Feb 7, 2016 · r-help

Oh! It was a typo. ntree=800 was to be specified. Thanks Bret. > .On 07-Feb-2016, at 8:58 PM, Bert Gunter <bgunter.4567 at gmail.com> wrote: > > 5800 **not 5, 800** , no commas and no spaces. > > Please read...

[Rcpp-devel] trouble creating a dataframe
Pratibha Rana · Jun 5, 2012 · rcpp-devel

I tried another approach, and this one was also futile. try{ int size = argTypes.getColumnCount(); std::vector<RObject> inputVectors; inputVectors.reserve(3); StringVector nameVec(size); NumericVector lenVec(size) ; NumericVector scaleVec(size) ; for (size_t i = 0; i < size; ++i) { //get...

[Rcpp-devel] difference between install from source and install from repositories
Pratibha Rana · Sep 18, 2014 · rcpp-devel

On 09/18/2014 01:39 PM, Dirk Eddelbuettel wrote: > On 18 September 2014 at 17:08, Pratibha Rana wrote: > | Bringing it back here :) > > [..] > > | While installing from sources I used the configure options from > | /etc/R/makeconf and that solved...

Error with Twitter Authorization for Sentiment Analysis
Sandeep Rana · Feb 15, 2016 · r-help

Shivi, Could you also share the piece of code to have a look at ? Regards, Sunny Singha > On 14-Feb-2016, at 3:45 PM, SHIVI BHATIA <shivi.bhatia at safexpress.com> wrote: > > Dear Team, > > > > Every now and then I...

Error with Twitter Authorization for Sentiment Analysis
Sandeep Rana · Feb 15, 2016 · r-help

Shivi, I?m not sure how you have installed ?twitterR? package. But please follow below steps and your issue will be resolved: - Ensure there are no objects in memory. To be sure run these commands : - .r.restartR() - rm(list=ls...

[Rcpp-devel] trouble creating a dataframe
Pratibha Rana · Jun 4, 2012 · rcpp-devel

Something seems to go wrong in Vector_create::create__dispatch. (gdb) p t1 $14 = (const Rcpp::traits::named_object<std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char...

SSfol in nlme
Ranae · May 7, 2012 · r-help

Hello, I am using SSfol in nlme to fit some data for the change of N concentration (N) in plant tissue over time (gdd). The model works nicely for 2 out of 3 treatments, so I would really like to...

[Rcpp-devel] trouble creating a dataframe
Pratibha Rana · Jun 5, 2012 · rcpp-devel

I tried the code that you suggested on The R prompt and it worked as expected. However the same piece of code doesn't work in my C++ app. try{ IntegerVector v = IntegerVector::create(1,2,3); std::vector<std...

[Rcpp-devel] problems while upgrading to Rcpp 0.11.2
Pratibha Rana · Sep 4, 2014 · rcpp-devel

I tried with the create() as well and I had the same issue, so I just tried to simplify the code as much as possible to get down to the root. It was not just the dataframe, function execution was...

Fitting a first order compartment model in nlme
Ranae · May 1, 2012 · r-help

Hello, I am using SSfol in nlme to fit some data for the change of N concentration (N) in plant tissue over time (gdd). The model works nicely for 2 out of 3 treatments, so I would really like to...

R Memory Issue
Sandeep Rana · Feb 17, 2016 · r-help

Hi, May be its reading your file and taking time which depends on size of the file that you are reading. Please explore ?data.table? library to read big files in few seconds. If you attempt to close the application...

splines and ns equation
Ranae · May 31, 2012 · r-help

Hi, I am looking at the change in N concentration in plant roots over 4 time points and I have fit a spline to the data using ns and lme: fit10 <- lme( N~ns(day, 3), data = rcn10G) I may...

Do YOU know an equation for splines (ns)?
Ranae · Jun 5, 2012 · r-help

Hi, I am looking at the change in N concentration in plant roots over 4 time points and I have fit a spline to the data using ns and lme: fit10 <- lme( N~ns(day, 3), data = rcn10G) I may...

[Rcpp-devel] problems while upgrading to Rcpp 0.11.2
Pratibha Rana · Sep 2, 2014 · rcpp-devel

Hi, I have a custom application that uses Rcpp and Rinside to execute R code. All was well until I was using R-3.0.0, Rcpp 0.10.2 and RInside 0.2.10 but now its time to...

difference between install from source and install from repositories
Pratibha Rana · Sep 18, 2014 · r-sig-debian

On 09/18/2014 11:16 AM, Dirk Eddelbuettel wrote: > On 18 September 2014 at 15:03, Pratibha Rana wrote: > | What is the difference between the R installation from source and the R > | installation from ubuntu repositories. Specifically when I...

Need your favour : twitter sentiment issue while cleaning the corpus
Sandeep Rana · Feb 16, 2016 · r-help

Hi, In continuation to my initial mail I also observed that as I include more number of tweets, the likelihood of getting this error increases. Platform I?m using: - Mac Yosemite - R version 3.2.2(RStudio) I have below...

Do YOU know an equation for splines (ns)?
Ranae · Jun 6, 2012 · r-help

I have not been able to get "predict" (or most functions) to run well with grouped data in nlme. I may not have it coded right, but this is what it looks like: http://r.789695.n4.nabble.com/file...

[Rcpp-devel] R-2.15 installation interfering with R-3.0
Pratibha Rana · Jun 21, 2013 · rcpp-devel

I looked at all the build steps and didn't find anything suspicious. The makefile has a lot of extra stuff but this is what essentially builds my app. I must mention that the crash occurs only if I'm...

[Rcpp-devel] problems while upgrading to Rcpp 0.11.2
Pratibha Rana · Sep 3, 2014 · rcpp-devel

I think I got to the bottom of the issue. I was using the -O0 option instead of the -O2 option while compiling the code. Including the -O2 option resolved the issue. Thanks Pratibha On 09/02/2014 04:49...

[Rcpp-devel] RInside examples cause crash
Pratibha Rana · Sep 23, 2013 · rcpp-devel

Hi, I'm unable to run the examples provided in RInside/inst/examples/standard if there is another R installation on the machine. I get the following error: Error in getLoadedDLLs() : there is no .Internal function 'getLoadedDLLs' Error in checkConflicts...

Can't find what you're looking for? Try searching with Google .