similar to: new package on CRAN: multivator

Displaying 20 results from an estimated 9000 matches similar to: "new package on CRAN: multivator"

2010 Nov 10
1
S4 package warning
Hello everyone. R-2.12.0, suse linux 11.3. I am debugging a package that uses S4 methods and R CMD check gives the following warning: > Warning in methods::findMethods(g, env) : > non-generic function 'mdm' given to findMethods() > See the information on DESCRIPTION files in the chapter 'Creating R > packages' of the 'Writing R Extensions' manual. I
2010 Oct 26
1
S4 methods for rbind()
Hello. I am trying to write an S4 method for rbind(). I have a class of objects called 'mdm', and I want to be able to rbind() them to one another. I do not want the method for rbind() to coerce anything to an mdm object. I want rbind(x1,x2,x1,x2) to work as expected [ie rbind() should take any number of arguments]. This is what I have so far: setGeneric(".rbind_pair",
2009 Feb 25
0
mefa 3.0-0
Dear R Community, I am pleased to announce that a new version of the mefa R package is available at the CRAN. mefa is a package for multivariate data handling in ecology and biogeography. It provides object classes to represent the data coded by samples, taxa and segments (i.e., subpopulations, repeated measures). It supports easy processing of the data along with relational data tables for
2009 Feb 25
0
mefa 3.0-0
Dear R Community, I am pleased to announce that a new version of the mefa R package is available at the CRAN. mefa is a package for multivariate data handling in ecology and biogeography. It provides object classes to represent the data coded by samples, taxa and segments (i.e., subpopulations, repeated measures). It supports easy processing of the data along with relational data tables for
2012 Apr 11
0
Significant updates to medical imaging packages: TractoR and RNiftyReg
Dear all, There have been some recent major updates to the TractoR and RNiftyReg packages, which are available for medical image analysis applications. If you use R for these purposes, I hope you will find the updates useful. RNiftyReg is an image registration package, which provides a clean R-like interface to the NiftyReg library developed at University College London [1]. It is aimed at
2012 Apr 11
0
Significant updates to medical imaging packages: TractoR and RNiftyReg
Dear all, There have been some recent major updates to the TractoR and RNiftyReg packages, which are available for medical image analysis applications. If you use R for these purposes, I hope you will find the updates useful. RNiftyReg is an image registration package, which provides a clean R-like interface to the NiftyReg library developed at University College London [1]. It is aimed at
2006 May 31
0
new package on CRAN
Dear List Please find uploaded to CRAN a new package, "partitions" that enumerates integer partitions using C. A paper describing the package has recently been accepted by JSS (volume 16, codesnippet 1). Integer partitions arise in many branches of combinatorics, and the partition function P(n) is the subject of much investigation in pure mathematics. The package enumerates the
2007 Nov 02
1
vignettes and papers
Hello everyone Lots of my packages have been the subject of journal articles either in JSS or Rnews or (in one case) elsewhere. I would like to add these articles to my packages as vignettes. Reproducing the papers exactly requires a number of files [such as style files or PDFs] to be included in the inst/doc directory to pass R CMD check. A vanilla .Rnw file seems to be a good idea, but
2002 Oct 08
3
status of CRAN
Dear List the other day, I had my yearly staff interview with my Head of Department. Under my list of publications, I included a document which I wrote (R-and-octave.txt) that ended up in the "contributed docs" section of CRAN. Unfortunately, neither my HoD nor the personnel person were terribly impressed with it, even though its preparation time was commensurate with many of my (co
2004 Jul 29
0
R and the Journal of Statistical Software
http://www.jstatsoft.org JSS is now up to Volume 11. This year is the first multi-volume year, with three volumes so far. JSS now has its own ISSN number and its own CODEC. A JSS LaTeX format will become available soon. JSS is aiming to become an (electronic) ASA journal, independent of JCGS, soon. It's contents, including back issues, will also soon be in CIS. Recent volumes of JSS
2008 Jul 12
0
R-outlet: Journal of Statistical Software
The Journal of Statistical Software was founded by Jan de Leeuw in 1996. Currently, there are 26 volumes with 260 aricles and the journal publishes about 4 new volumes per year. The web address is www.jstatsoft.org. All articles are pdf files, since 2005 all produced from JSS LaTeX templates. JSS is edited by Jan de Leeuw, since 2005 jointly with Achim Zeileis of the Wirtschaftsuniversität Wien.
2004 Oct 02
0
Publishing R package descriptions in JSS
More and more R packages come with a corresponding article in the Journal of Statistical Software (www.jstatsoft.org). Achim Zeileis, our TeXnical Editor, has recently contributed jss style files for issues, bookreviews, software reviews, and code snippets. They can be downloaded from http://www.jstatsoft.org/JSSstyle.zip Package authors who want to transform their package into a published
2004 Oct 02
0
Publishing R package descriptions in JSS
More and more R packages come with a corresponding article in the Journal of Statistical Software (www.jstatsoft.org). Achim Zeileis, our TeXnical Editor, has recently contributed jss style files for issues, bookreviews, software reviews, and code snippets. They can be downloaded from http://www.jstatsoft.org/JSSstyle.zip Package authors who want to transform their package into a published
2020 Jan 08
1
add jsslogo.jpg to R sources?
On Wed, 8 Jan 2020, I?aki Ucar wrote: > On Wed, 8 Jan 2020 at 19:21, Toby Hocking <tdhock5 at gmail.com> wrote: >> >> Hi R-core, I was wondering if somebody could please add jsslogo.jpg to the >> R sources? (as I reported yesterday in this bug) >> >> https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17687 >> >> R already includes jss.cls which
2002 Jan 27
2
Journal of Statistical Software
JSS, which is at http://www.jstatsoft.org, publishes statistical software with manuals, as well as papers describing, comparing, and evaluating statistical software. Abstracts of all contributions accepted in JSS are published in printed form in JCGS. Although we publish software written in any language, we especially welcome software written in R. The general idea is that packages written in R
2002 Jan 27
2
Journal of Statistical Software
JSS, which is at http://www.jstatsoft.org, publishes statistical software with manuals, as well as papers describing, comparing, and evaluating statistical software. Abstracts of all contributions accepted in JSS are published in printed form in JCGS. Although we publish software written in any language, we especially welcome software written in R. The general idea is that packages written in R
2011 Sep 27
1
array extraction
hello everyone. Look at the following R idiom: a <- array(1:30,c(3,5,2)) M <- (matrix(1:15,c(3,5)) %% 4) < 2 a[M,] <- 0 Now, I think that "a[M,]" has an unambiguous meaning (to a human). However, the last line doesn't work as desired, but I expected it to...and it recently took me an indecent amount of time to debug an analogous case. Just to be explicit, I would
2006 Apr 19
0
Code Snippets
JSS has been trying to develop a "Code Snippet" section (Hornik and Koenker, editors), but so far there have not been many submissions, possibly because this is not widely known. if you have some code that is not a full-blown package (just one or two functions) and you think it will be of general use, think about submitting. There is an excellent example in Volume 11 by Duncan
2005 Oct 24
0
new package bundle on CRAN: BACCO
Dear List please find on CRAN a new R bundle, BACCO, for Bayesian analysis of random functions, comprising two packages: emulator and calibrator. Package calibrator implements: ?Bayesian calibration of computer models?, M. C. Kennedy and A. O'Hagan 2001. Journal of the Royal Statistical Society B, 63(3) pp425-464 and package emulator implements: J. Oakley 2004. ?Estimating percentiles
2006 May 22
0
JSS Code Snippets
JSS is trying to develop it's Code Snippets section. We have some snippets lined up and one published in the latest volume http://www.jstatsoft.org/index.php?vol=16 If you have small chunks of code of obvious relevance to statistical computing (need not be in R) consider submitting it -- why keep it to yourself ? Just a matter of pasting a minimal amount of TeX into our templates and