Displaying 5 results from an estimated 5 matches for "yourfault".
Did you mean:
courault
2014 Jul 08
0
Re: [R-es] Consulta paquetización con versión R 3.1.0
...> > > Type: Package
>>> > > Title: What the package does (short line)
>>> > > Version: 1.0
>>> > > Date: 2014-07-08
>>> > > Author: Eva Prieto Castro
>>> > > Maintainer: Eva Prieto Castro <yourfault@somewhere.net
>>> > <mailto:yourfault@somewhere.net>
>>> > > <mailto:yourfault@somewhere.net <mailto:yourfault@somewhere.net
>>> >>>
>>> > > Description: Test Pkg
>>> > > License: Unlimited
>&g...
2005 Jun 19
1
Creating a R package for Windows XP
...in library(pkg, character.only = TRUE) :
there is no package called 'mypkg'
The DESCRIPTION file in /library/mypkg contains:
Package: mypkgType: Package
Title: What the package does (short line)
Version: 1.0
Date: 2005-06-19
Author: Who wrote it
Maintainer: Who to complain to <yourfault at somewhere.net>
Description: More about what it does (maybe more than one line)
License: What license is it under?
The first line looks suspicious so I change it to two lines
Package: mypkg
Type: Package
I load the package again and get
> local({pkg <- select.list(sort(.packages(all....
2005 Aug 23
1
Problem with RCMD build ...
Hi
I have write A function to draw pyramid of age. I have two function
draw.pyramide(h,f,l) , pyramide(h,f,l) and a data frame with data.
I first use package.skeleton("pyra")
I got the package structure
Then in my shell I use
> RCMD build pyra
I get this :
check for description ... OK
....
removing junk files
but
"cannot open
2008 Apr 16
0
package.skeleton() creates corrupted Rd file (PR#11191)
...~
}
\details{
\tabular{ll}{
Package: \tab cmrutils\cr
Type: \tab Package\cr
Version: \tab 1.0\cr
Date: \tab 2008-03-30\cr
License: \tab What license is it under?\cr
}
~~ ????? ????, ??? ???????????? ?????, ??????? ???????? ?????? ??????? ~~
}
\author{
Who wrote it
?????????: Who to complain to <yourfault at somewhere.net>
~~ ????? ?/??? ?????????????? ????? ~~
}
\references{
~~ ?????????? ??? ?????? ?????? ?? ?????????????? ?????????? ~~
}
~~ ?????????????: ?????? ??????????? ???????? ?????, ?? ?????? ?? ??????, ~~
~~ ?? ????? KEYWORDS ? ????? ? ????????????? ?? R ~~
\keyword{ package }
\seealso...
2009 Dec 02
1
How to export a function from a package and access it only by specifying the namespace?
I have the following test package.
$ ls
DESCRIPTION man NAMESPACE R
$ cat DESCRIPTION
Package: try.package
Type: Package
Title: What the package does (short line)
Version: 1.0
Date: 2009-10-26
Author: Who wrote it
Maintainer: Who to complain to <yourfault at somewhere.net>
Description: More about what it does (maybe more than one line)
License: What license is it under?
LazyLoad: yes
$ cat NAMESPACE
export(
my_test_g
)
$ ls R
my_test_f.R randomxx.R
$ for f in R/*.R; do echo $f; cat $f;done
R/my_test_f.R
my_test_f<-function() {
print...