Displaying 20 results from an estimated 500 matches similar to: "install_github and survival"
2019 Sep 06
0
[EXTERNAL] RE: install_github and survival
Yes, that is exactly the problem.? The code found in the "config" script is never run.?
But why doesn't it get run?
On 9/6/19 5:44 AM, Georgi Boshnakov wrote:
> I cloned therneau/survival and the installation failed since there is no definition for exported function survfit().
> A file seems to be missing - there is survfit0() and survfit0.R but, compared to CRAN, no
2019 Sep 05
1
install_github and survival
I treat CRAN as the main repository for survival, but I have also had a github
(therneau/survival) version for a couple of years.? It has a vignette2 directory, for
instance, that contains extra vignettes that either take too long to run or depend on
other packages.? It also gets updated more often than CRAN (though those updates mght not
be as well tested yet).
In any case, since it is
2004 Aug 02
4
Is k equivalent to k:k ?
Hi,
I wonder if the following (apparent) inconsistency is a bug or feature.
Since scalars are simply vectors of length one I would think that
a and
a:a
produce the same result. For example,
> identical(4.01,4.01:4.01)
[1] TRUE
However,
identical(4,4:4)
[1] FALSE
and
> identical(4.0,4.0:4.0)
[1] FALSE
A closer look reveals that the colon operator produces objects
2018 May 25
2
Rd parser throws error for user macros invoked with empty argument
While on the topic of Rd macro arguments, it seems that if a multiline argument is supplied, the lines after the first are silently ignored:
f <- tempfile()
mac6 <- "\\newcommand{\\mac6}{mac6: #1}"
cat(mac6, "\\mac6{2*3
2+2
sin(pi)
}\n", file = f)
rd <- tools::parse_Rd(f)
> rd
mac6: 2*3
---
Georgi Boshnakov
-----Original Message-----
From: Tomas Kalibera
2019 Jun 28
2
tools::package_native_routine_registration_skeleton?
> ... reports that the fortran names of all the registered fortran functions are ?undocumented objects?...
Those symbols should not be exported. In quantreg v5.33, NAMESPACE has 'exportPattern(".")'. Maybe it is a good time to remove that and export explicitly the symbols that are meant for export.
Georgi Boshnakov
------------------------------
Message: 6
Date: Fri, 28
2018 May 14
3
Rd parser throws error for user macros invoked with empty argument
Bug or feature?
I get the following error from parse_Rd() when a user Rd macro (including system ones) is invoked with empty argument {},
eg \mymacro{}:
Error in tools::parse_Rd(fn) :
Value of SET_STRING_ELT() must be a 'CHARSXP' not a 'NULL'
A full example is further below with the system macro \CRANpkg{}. In this example it doesn't make sense to use empty argument but
2013 Dec 20
0
error con install_github() del paquete devtools
has probado con: install_github('paquete",username='usuario')?
2013/12/20 Jose Luis Cañadas Reche <canadasreche en gmail.com>:
> Hola a todos.
>
> Estoy intentando instalar el paquete likert utilizando devtools y obtengo el
> siguiente error
>
> library(devtools)
> install_github('likert','jbryer')
> Installing github repo(s)
2013 Dec 20
0
error con install_github() del paquete devtools
Hola,
En GitHub estará siempre la última versión, pero también está el paquete en
CRAN y puedes instalártelo como cualquier otro paquete ahí disponible...
Saludos,
Carlos Ortega
www.qualityexcellence.es
El 20 de diciembre de 2013, 14:54, José Luis Cañadas <canadasreche@gmail.com
> escribió:
> Si. Pero no funciona. En ordenador curro si funciona y tb tiene linux.
> Seguiré
2013 Dec 21
2
error con install_github() del paquete devtools
Gracias Oscar.
Funciona perfectamente.
Ya investigaré más adelante porque no funciona install_github
Saludos y feliza navidad..
El 20/12/13 23:05, Oscar Perpiñan escribió:
> tmp <- paste0(tempdir(), '/likert.zip')
> download.file('https://github.com/jbryer/likert/archive/master.zip',
> destfile=tmp, method='wget')
> unzip(tmp,
2013 Dec 20
0
error con install_github() del paquete devtools
Hola,
Puedes hacerlo sin devtools. Descargas el ZIP del repositorio, lo
descomprimes, instalas el paquete que hay en CRAN para tener todas las
dependencias instaladas y finalmente instalas el paquete en la versión
de GitHub.
tmp <- paste0(tempdir(), '/likert.zip')
download.file('https://github.com/jbryer/likert/archive/master.zip',
destfile=tmp,
2013 Dec 21
0
error con install_github() del paquete devtools
Yo también tuve un problema parecido, en el momento que extrae el zip.
Lo solucione como viene aquí:
http://stackoverflow.com/questions/20408250/default-options-setting-for-unzip
Saludos
El 21 de diciembre de 2013, 9:00, Jose Luis Cañadas Reche <
canadasreche@gmail.com> escribió:
> Gracias Oscar.
>
> Funciona perfectamente.
> Ya investigaré más adelante porque no funciona
2013 Dec 22
0
error con install_github() del paquete devtools
A mi no me dio problemas. Intenta instalar nuevamente RCurl.
> library(devtools)
> install_github('likert','jbryer')
Installing github repo likert/master from jbryer
Downloading likert.zip from
https://github.com/jbryer/likert/archive/master.zip
Installing package from /tmp/RtmpJuHsLY/likert.zip
arguments 'minimized' and 'invisible' are for Windows only
2018 Jun 18
2
incomplete results from as.character.srcref() in some cases involving quote()
Hi,
The result of as,character() on 'srcref' objects doesn't have the closing ')' in some cases involving 'quote':
> e4 <- quote({2+2})
> class(attr(e4, "wholeSrcref"))
[1] "srcref"
> as.character(attr(e4, "wholeSrcref"))
[1] "e4 <- quote({2+2}"
As a result printing the object also lacks it and gives an
2019 Jun 28
1
tools::package_native_routine_registration_skeleton?
On 28/06/2019 6:27 a.m., Koenker, Roger W wrote:
> Thanks, I was just coming to that conclusion and beginning to look for a way to make a list of
> exportable objects.
After library(quantreg), ls("package:quantreg") will list all the names
you currently export. So
cat(ls("package:quantreg"), sep = ", ")
will print the list in a form suitable for including
2013 Dec 20
3
error con install_github() del paquete devtools
Hola a todos.
Estoy intentando instalar el paquete likert utilizando devtools y
obtengo el siguiente error
library(devtools)
install_github('likert','jbryer')
Installing github repo(s) likert/master from jbryer
Downloading likert.zip from
https://github.com/jbryer/likert/archive/master.zip
Error en function (type, msg, asError = TRUE) : <not set>
Me pasa también con
2010 May 10
3
update.packages fails with directory not found
Windows XP. I have just updated to R 2.11.0 and then run
update.packages. In the series of updates, a few will succeed, then I
get a failure like
package 'mvtnorm' successfully unpacked and MD5 sums checked
package 'party' successfully unpacked and MD5 sums checked
package 'PBSmodelling' successfully unpacked and MD5 sums checked
Error in normalizePath(path) :
2013 Dec 21
2
error con install_github() del paquete devtools
Gracias Jorge. Pero tiene que ser otra cosa. El Renviron está bien y unzip
está en ese path. Y al hacerlo como indica Oscar no hay problema con el
unzip
Miraré como está en otro Linux que si funciona a ver que puede ser.
Pero será después de Navidad.
Saludos
[[alternative HTML version deleted]]
2013 Dec 20
4
error con install_github() del paquete devtools
Si. Pero no funciona. En ordenador curro si funciona y tb tiene linux.
Seguiré investigando
has probado con: install_github('paquete",username='usuario')?
2013/12/20 Jose Luis Cañadas Reche <canadasreche@gmail.com>:
> Hola a todos.
>
> Estoy intentando instalar el paquete likert utilizando devtools y obtengo
el
> siguiente error
>
> library(devtools)
>
2004 Dec 08
4
Is k equivalent to k:k ?
Bringing up an old topic on a small technicality.
In the help documentation on seq.
Value:
The result is of 'mode' '"integer"' if 'from' is (numerically
equal to an) integer and 'by' is not specified.
The arguement in seq specifying length also creates "double" which is not obvious in the wording, as "by" is not specified
2004 Dec 08
4
Is k equivalent to k:k ?
Bringing up an old topic on a small technicality.
In the help documentation on seq.
Value:
The result is of 'mode' '"integer"' if 'from' is (numerically
equal to an) integer and 'by' is not specified.
The arguement in seq specifying length also creates "double" which is not obvious in the wording, as "by" is not specified