Displaying 20 results from an estimated 4000 matches similar to: "thousands separator in console output?"
2004 Jan 01
4
force fixed format
Hello,
A small problem I can't solve
> p <- 0.0001
> p
[1] 1e-04
How can I force the printout of p to 0.0001?
I have tried 'format', 'round', 'signif', 'print' in different combinations without success.
Fredrik Lundgren
2005 Nov 15
3
Darstellung mit Nachkommastellen
Hi!
I got a rather stupid question (I think):
Is there ANY option that makes R display numericals not like
"1e-8"
but as
"0.00000001"
by default ?
And I need the outcome to be really numerical, so formatC(...) which produces a
character or something like this won't be acceptable.
Any help on this would be appreciated, thanx.
Marc
2003 Oct 14
3
Number Format
Hi
A very simple question on number formats. After some calculations, some variables I have come out looking like this:
-1.892972e+00
Now apart from the fact that the "e+00" is completely redundant, I would rather have the number represented without the e bit. I want to export data like this to a text file and would rather have:
-1.892972
than
-1.892972e+00
I have tried
2019 Mar 21
3
prettyNum digits=0 not compatible with scientific notation
R developers,
Seems I get a bad result ("%#4.0-1e" in particular) when trying to use prettyNum digits=0 with scientific notation. I tried on both my Linux box and on an online R evaluator and saw the same problem, so it's not limited to my box at least. I see the problem in both R 3.5.3 and R 3.3.2.
options(scipen=-100)
prettyNum(1, digits=0)
[1] "%#4.0-1e"
prettyNum(2,
2018 May 10
2
anchura chunk en pdf
Instalado ?tinytex?
> install.packages(?tinytex?)
y cargándolo
> library(tinytex)
Fue una causalidad: cuando instalé este paquete los PDFs comenzaron a salir correctamente de anchura. Tampoco puede darte una explicación :(
Saludos,
Patricio
Patricio Suárez Gil
Unidad de Investigación Área V-Gijón
Planta 5ª Impar
Hospital Universitario de Cabueñes
C/Prado, 395
33203 Gijón (Asturias)
2018 May 10
2
anchura chunk en pdf
Yo he conseguido que los chunks y el texto tengan la misma anchura instalando ?tinytex?.
Un saludo,
Patricio
Patricio Suárez Gil
Unidad de Investigación Área V-Gijón
Planta 5ª Impar
Hospital Universitario de Cabueñes
C/Prado, 395
33203 Gijón (Asturias)
Tfno: 985 185 000 (Ext. 85715)
@uinvest_psg
ESPAÑA
[[alternative HTML version deleted]]
2018 Feb 12
4
problema de fechas
hola Patricio, usa:
dplyr::if_else
[[alternative HTML version deleted]]
2013 Jun 03
4
gráfica densidades
hola todosnecesito hacer un gráfica de este tipo, alguna idea ???
gracias
Patricio F.
------------ próxima parte ------------
Se ha borrado un adjunto en formato HTML...
URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20130603/f3fc33e3/attachment-0001.html>
------------ próxima parte ------------
A non-text attachment was scrubbed...
Name: densidad.jpg
Type: image/jpeg
2018 Feb 12
2
problema de fechas
Las fechas están en formato ?Date? del paquete ?lubridate?, pero me encuentro el mismo problema usando fechas en formato POSIXct.
Saludos,
Patricio
> El 13 feb 2018, a las 0:08, Javier Marcuzzi <javier.ruben.marcuzzi en gmail.com> escribió:
>
> Estimado Patricio
>
> Hay más de una forma para trabajar con fechas, y no es lo mismo dependiendo el sistema, a mi me
2014 May 07
5
acelerar conexión con RODBC
Hola a todos...estoy usando MariaDb como base de datos (similares caracteristicas a MySQL), y la conexión entre R y esta con RODBC.¿Existe alguna forma de incrementar la conexión para carga de datos ya que son largos, ejm: 3000 registros en 1 minuto...Si conocen de esto o me pueden sugerir alternativas, estaré agradecido.
Patricio.
[[alternative HTML version deleted]]
2018 Feb 12
4
problema de fechas
Tengo un vector de fechas en formato R:
> fechas <- c(?2016-07-15?, ?2016-10-12?, ?2017-02-11?)
quiero que las fechas de 2017 (la tercera del vector del ejemplo) pasen a ser NA
> fechas2 <- ifelse(fechas > ?2016-12-31?, NA, fechas)
El problema que me encuentro es que el resultado (fechas2) es un vector numérico y no un vector de fechas. No encuentro la solución.
Se agradecen
2018 Jan 26
2
Ji cuadrado de tendencia lineal
Hola,
estoy buscando la manera de ejecutar en R el test de Ji-cudrado de tendencia lineal (Linear trend Chi-square), pero no lo encuentro en toda la bibliografía que consulté, ni la viñeta del chis.test incluye ninguna opción que contemple este test.
Si alguien tiene experiencia con el tema, agradecería cualquier ayuda.
Un saludo,
Patricio Suárez Gil
Unidad de Investigación Área V-Gijón
2003 May 02
2
Suppressing Scientific Notation
R gurus,
Every so often(*) someone asks how to suppress scientific notation in
printing, so I thought I'd give it a shot, but I need some help.
The formatting decision is made(**) on line 286 of src/main/format.c :
if (mF <= *m) { /* IFF it needs less space : "F" (Fixpoint) format */
where mF is the number of characters for "normal" printing and *m is the number
2018 Jan 27
3
error en función ggadjustedcurves, paquete survminer
Tengo un modelo de regresión de Cox y quiero obtener el plot ajustado por una covariable (sexo) con la función ?ggadjustedcurves?, pero me da el siguiente error:
> cox2 <- coxph(os ~ imc_25 + sexo.1, data = datos)
> cox2
Call:
coxph(formula = os ~ imc_25 + sexo.1, data = datos)
coef exp(coef) se(coef) z p
imc_25 -0.621 0.537 0.299 -2.08 0.038
sexo.1M 0.714
2018 Oct 08
2
bug with OutDec option and deferred_string altrep object
While implementing R's new 'altrep' functionality in the TERR engine,
I discovered a bug in R's 'deferred_string' altrep object: it is not
using the correct value of the 'OutDec' option when it expands a
deferred_string. See the following example:
R 3.5.1: (same results in R 3.6.0 devel engine built 10/5)
> options(scipen=0, OutDec=".")
>
2012 Mar 20
3
Agregar variables de un dataframe
Hola a todos.Quiero saber si existe una forma mas apropiada para hacer esto:tengo un dataframe de 40 variables y una de ellas es de fechas.lo que quiero es una tabla agregada por suma y como criterio de agrupación esta variable de fecha.en sql sería algo así:
select fecha, sum(v1), sum(v2)..., sum(v39)from tablagroup by fecha;
mi problema es que las vn pueden ser de dimensión cambiante, es decir,
2014 May 07
2
FW: acelerar conexión con RODBC
Estimado Patricio Vireri
No mire Rmysql hoy pero por esas cosas de la vida decidieron no
compilarlo en windows, hay varias alternativas, pero particularmente no
use ninguna.
MariaDB ahora tiene grafos, por si le sirve.
Si compilo Rmysql no es un principiante, entonces pregunta de
principiante ¿si solo usa odbc? Le pregunto esto porque cuándo yo usaba
mac compre a una empresa " conexión
2009 Mar 06
1
Thousand separator on axis
Is there an easy way to add a thousand separator mark on the axis of a
plot? The best solution I've found so far is the following:
y <- seq(0, 100000, 10000)
plot(y, yaxt = "n", ylab = "")
axis(2, at = y, labels = formatC(y, big.mark = " ", format = "d"), las=2)
But that seems like quite a hassle to do every time around. Is there a way
to get the
2010 Feb 02
1
[R] Suppressing scientific notation on plot axis tick labels (PR#14202)
On 02/02/2010 6:20 AM, Dimitri Shvorob wrote:
> Ruben Roa has kindly suggested using 'scipen' option - cf.
>
>> fixed notation will be preferred unless it is more than ???scipen??? digits
>> wider.
>
> However,
>
> options(scipen = 50)
> x = c(1e7, 2e7)
> barplot(x)
>
> still does not produce the desired result.
This is strange. I see what
2005 Dec 19
1
PDC - Windows cliente change passwd
Hi, i have a problems with windows clients when they try to change the
password, windows respond with "Please enter valid character..." but the pass
get changed.
i have this in smb.conf
passwd chat = *Enter\snew\sUNIX\spassword:* %n\n
*Retype\snew\sUNIX\spassword:* %n\n .
when i change that to:
passwd chat = *New*UNIX*password* %n *Re*ype*new*UNIX*password* %n