Re: [R] Vector of Numbers Not Output to Screen

2014-07-20 Thread Dario Strbenac
It's a plausible use-case. For example, in the example section of a help file. if(require(aPackage)) { # Do computations. # Show beginning of first result vector. # Show beginning of second result vector. } __ R-help@r-project.org mailing list

[R] (no subject)

2014-07-20 Thread Vishal Chari
Hi r community  I need help in running rqpd package in r I have loaded rqpd. how do i attach my panel data? is it same as plm in which i specify region and time. what is command for running fixed effect model for various quantiles? regards vishal [[alternative HTML version deleted]]

[R] roxygen2

2014-07-20 Thread Kevin Kunzmann
Hi, I have developed a package and would like to switch documentation to roxygen2 from manual :) However roxygen2::roxygenize() First time using roxygen2 4.0. Upgrading automatically... Loading required package: nleqnslv Error in file(filename, r, encoding = encoding) :

[R] spplot help

2014-07-20 Thread javad bayat
Dear all I am using spplot command to plot my raster. I make it but there is two problems with me. 1- I want to have no border or greater border around the raster 2- I want to insert a legend with a header aside from its legend. please help me. thanks in advance. -- Best Regards Javad Bayat

[R] help with column substaction with a twist

2014-07-20 Thread Ubernerdy
Hello guys! I have been messing around with R for a while now, but this situation has me a bit stumped. I was unable to solve it by reading documentation. So I have this table (currently in Excel - could export it as csv) with values in 3 columns. Let's call them value P (for position), value B

Re: [R] help with column substaction with a twist

2014-07-20 Thread jim holtman
try this: # generate test data set.seed(1) n - 100 test - data.frame(p = sample(10, n, TRUE) + , b = sample(10, n, TRUE) + ) test$e - sample(5, n, TRUE) + test$b # make sure e b # add distance test$dist - ifelse(test$p test$b + , test$p -

Re: [R] Vector of Numbers Not Output to Screen

2014-07-20 Thread Duncan Murdoch
On 17/07/2014, 10:00 PM, Dario Strbenac wrote: The example in the question was not inside a user function. The explanations you were given were slightly inaccurate. The usual rule is that results returned at the top level are printed unless they are marked as invisible. (There are a few cases

Re: [R] help with column substaction with a twist

2014-07-20 Thread John McKown
On Sun, Jul 20, 2014 at 6:33 AM, Ubernerdy uberne...@gmail.com wrote: Hello guys! I have been messing around with R for a while now, but this situation has me a bit stumped. I was unable to solve it by reading documentation. So I have this table (currently in Excel - could export it as csv)

Re: [R] help with column substaction with a twist

2014-07-20 Thread Ubernerdy
Thanks you guys, you are awesome. -S On Sun, Jul 20, 2014 at 5:36 PM, John McKown john.archie.mck...@gmail.com wrote: On Sun, Jul 20, 2014 at 6:33 AM, Ubernerdy uberne...@gmail.com wrote: Hello guys! I have been messing around with R for a while now, but this situation has me a bit

[R] How to determine if GARCH model has 'false convergence'

2014-07-20 Thread 张天添
Dear R helping team, I just want to test whether there is a false convergence in my GARCH(1,1) model. On my R console it dose not shown a false converge. Here are my command : arch=garch(m2$residuals,order=c(1,1),trace=F) arch Call:garch(x = m2$residuals, order = c(1, 1), trace = F)

[R] dx accuracy measures from raw data

2014-07-20 Thread Anoop Shah
Hello R users! I am a medic and have been working with R for about 6 months now. I was hoping to pick someone’s brain about a diagnostic accuracy study that has now been completed. I am trying to derive the sensitivity, specificity, NPV and PPV with the corresponding 95% CI from the raw data.

Re: [R] spplot help

2014-07-20 Thread MacQueen, Don
I'd suggest asking this question on r-sig-geo. spplot() uses methods from the lattice package, therefore some types of customization require the use of methods from that package. -Don -- Don MacQueen Lawrence Livermore National Laboratory 7000 East Ave., L-627 Livermore, CA 94550 925-423-1062

Re: [R] Vector of Numbers Not Output to Screen

2014-07-20 Thread David Winsemius
On Jul 20, 2014, at 6:30 AM, Duncan Murdoch wrote: On 17/07/2014, 10:00 PM, Dario Strbenac wrote: The example in the question was not inside a user function. The explanations you were given were slightly inaccurate. The usual rule is that results returned at the top level are printed

Re: [R] Vector of Numbers Not Output to Screen

2014-07-20 Thread Duncan Murdoch
On 20/07/2014, 5:46 PM, David Winsemius wrote: On Jul 20, 2014, at 6:30 AM, Duncan Murdoch wrote: On 17/07/2014, 10:00 PM, Dario Strbenac wrote: The example in the question was not inside a user function. The explanations you were given were slightly inaccurate. The usual rule is that