Displaying 20 results from an estimated 800 matches similar to: "convertir archivo texto en data frame"
2015 Oct 08
2
Uso comodín
Hola,
Si quieres cambiar todas las ocurrencias sería "*str_replace_all()*" de esa
misma librería (stringr).
Si no quieres usarla por cualquier motivo, puedes hacer lo mismo con la
función "*gsub()*" que está en el paquete "base" (instalada por defecto en
R).
Gracias,
Calos Ortega
www.qualityexcellence.es
El 8 de octubre de 2015, 11:58, Francisco Rodríguez
2013 Jul 06
2
Duda trabajando con nombres de objetos que se reciben como parámetros
Eva,
¿Algo asi o te entiendo mal?
l <- list()l$nombre <- "Ana"l$apellido <- "Pérez"parametro <-
"nombre"if (exists(paste('nombre', 'OnValidate', sep='')))
nombreOnValidate(1:5) # cuidado con el enviroment nombreOnValidateif
(exists(paste('s', 'um', sep=''))) sum(1:5) # esto lo agrego como
ejemplo[1] 15l[
2013 Jul 06
2
Duda trabajando con nombres de objetos que se reciben como parámetros
Hola a tod@s:
Supongamos una lista como ésta:
l <- list()
l$nombre <- "Ana"
l$apellido <- "Pérez"
Ahora supongamos que tengo esta variable:
parametro <- "nombre"
Necesito saber dos informaciones:
1º) Saber si existe la función nombreOnValidate. Es decir, debo concatenar el valor de parametro con la cadena "OnValidate" y hacer un exists,
2013 Jul 06
1
Duda trabajando con nombres de objetos que se reciben como parámetros
Algo asi?
l <- list()l$nombre <- "Ana"l$apellido <- "Pérez"parametro <-
"nombre"paste(l[ parametro][[1]], 'OnValidate', sep='')[1]
"AnaOnValidate"l[ parametro][[1]][1] "Ana"x <- 1:5AnaOnValidate <-
function(x) print(x)if (exists(paste(l[ parametro][[1]], 'OnValidate',
sep=''))) do.call(paste(l[
2012 Mar 09
6
unir 2 dataframe con con igual caso pero distinto valor en igual variable
Estimados usarios de R:
Tengo una base de datos madre en formato .sav de SPSS y la quiero
modificar usando datos de otras base de datos .sav y otra en .csv a
las que llamare hijos.
No tengo problema en convertirlas en data.frame.
Todos los archivos tienen en común una variable que es única.
En aquellos casos que les falta un valor a una variable en el archivo
madre lo relleno con el valor del
2010 May 08
3
Count cases in a list
Hi everybody, I would like to count how many times names in list L,
nombreL, apear in list C, nombreC.
Can I improve the next program?
cuenta <- 0
topL <- length(nombreL)
topC <- length(nombreC)
for (i in 1:topL) {
for (j in 1:topC) {
k <-
grep(noquote(nombreL[i]),nombreC[j])
2012 Aug 31
4
Gracias Isidro y Carlos
Muchas gracias Isidro y Carlos después del mensaje anterior he logrado
ver la solución:
"E:\Archivos de programa\R\R-2.15.0\bin\i386\R.exe" CMD BATCH --vanilla
--slave "E:\curso 2011-12\fuden\plantillas\salidas\p3b.r"
quit
Crea un fichero donde da la solución y el tiempo de ejecución:
[1] 7
> proc.time()
user system elapsed
0.37 0.04 0.37
Muchas gracias y
2008 Feb 26
1
AMD on a SIP trunk...
We have an Asterisk server with a small outgoing call center. We use
AMD and it usually works very well on Zap channels (E1 PRI). We added a
couple of SIP trunks to reduce long distance costs but now AMD gets
stuck when the call goes out through the SIP channels. Here is an
example call using a SIP line:
-- Executing [016566275538 at CC2:1]
Set("Local/016566275538 at CC2-dad7,2",
2015 May 16
2
[RFC 4/4] rpmsg: DMA map sgs passed to virtio
On Thu, May 7, 2015 at 3:28 AM, Edgar E. Iglesias
<edgar.iglesias at gmail.com> wrote:
>
> On Wed, May 06, 2015 at 03:51:48PM +0930, Rusty Russell wrote:
> > "Edgar E. Iglesias" <edgar.iglesias at gmail.com> writes:
> > > From: "Edgar E. Iglesias" <edgar.iglesias at xilinx.com>
> > >
> > > Signed-off-by: Edgar E. Iglesias
2015 May 16
2
[RFC 4/4] rpmsg: DMA map sgs passed to virtio
On Thu, May 7, 2015 at 3:28 AM, Edgar E. Iglesias
<edgar.iglesias at gmail.com> wrote:
>
> On Wed, May 06, 2015 at 03:51:48PM +0930, Rusty Russell wrote:
> > "Edgar E. Iglesias" <edgar.iglesias at gmail.com> writes:
> > > From: "Edgar E. Iglesias" <edgar.iglesias at xilinx.com>
> > >
> > > Signed-off-by: Edgar E. Iglesias
2015 May 01
5
[RFC 0/4] rpmsg: Fix init of DMA:able virtqueues
From: "Edgar E. Iglesias" <edgar.iglesias at xilinx.com>
I'm trying to run rpmsg and remoteproc on the ZynqMP (arm64) but I'm hitting
a DMA/mm error. The issue was discussed here:
http://lists.infradead.org/pipermail/linux-arm-kernel/2015-March/333050.html
Russel King pointed out that the arm64 is not doing anything wrong by
returning vmapped memory (which is incompatible
2015 May 01
5
[RFC 0/4] rpmsg: Fix init of DMA:able virtqueues
From: "Edgar E. Iglesias" <edgar.iglesias at xilinx.com>
I'm trying to run rpmsg and remoteproc on the ZynqMP (arm64) but I'm hitting
a DMA/mm error. The issue was discussed here:
http://lists.infradead.org/pipermail/linux-arm-kernel/2015-March/333050.html
Russel King pointed out that the arm64 is not doing anything wrong by
returning vmapped memory (which is incompatible
2015 May 06
2
[RFC 4/4] rpmsg: DMA map sgs passed to virtio
"Edgar E. Iglesias" <edgar.iglesias at gmail.com> writes:
> From: "Edgar E. Iglesias" <edgar.iglesias at xilinx.com>
>
> Signed-off-by: Edgar E. Iglesias <edgar.iglesias at xilinx.com>
First off, I have handed maintainership off to Michael S. Tsirkin, so
his word is now law.
That said... there's nothing fundamentally *wrong* with this, but
2015 May 06
2
[RFC 4/4] rpmsg: DMA map sgs passed to virtio
"Edgar E. Iglesias" <edgar.iglesias at gmail.com> writes:
> From: "Edgar E. Iglesias" <edgar.iglesias at xilinx.com>
>
> Signed-off-by: Edgar E. Iglesias <edgar.iglesias at xilinx.com>
First off, I have handed maintainership off to Michael S. Tsirkin, so
his word is now law.
That said... there's nothing fundamentally *wrong* with this, but
2018 Apr 18
3
Pasar variables de data frame a una sola variable
Hola erreros!
Acudo de nuevo a ustedes porque ando enredado con algo que debe ser simple
pero que no consigo. Lo que ando buscando hacer es pasar todas las
variables de un dataframe a solo una variable (columna) con la info
apilada. Lo que tengo es un dataframe así (con 200 variables y 30,000
filas):
Var1 Var2 Var3
1 5 9
2 6 10
3 7 11
4 8 12
y lo que necesito es convertirlo a:
Var1
1
2
3
4
5
6
2008 Feb 13
2
javascript pop window from form how to update field back to main form
Hi
I have question where I run web form. Now on this form I have one
field with link select user.
This link will pop up new window with javascript and on this window I
have form with items
which end user can select. Once selection is done end user press
button Select User.
Now I need to close that javascipt window and send back value of that
selection back to form
and to the field which has
2015 Oct 08
2
Uso comodín
Hola a todos
Una pregunta creo que sencilla:
Tengo un listado de nombres:Juan PereiraManuel PereiraPedro Pereira...
Quiero cambiar todos los apellidos Pereira por Perez.Por ejemplo uso esta opcion:Datos$Nombre[Datos$Nombre== "Juan Pereira"] <- "Juan Perez"
Seguramente haya otros metodos para cambiarlos, pero mi pregunta es:¿puedo cambiarlos todos de golpe usando algún tipo
2018 Aug 06
5
Contar DNI por Jurisdicción.
Hola,
Tengo el siguiente DATA FRAME
DNI JURISDICCION DISPOSITIVO NOMBRE APELLIDO
1 Bs As
2 Bs As
3 Bs As
4 Entre Ríos
5 Entre Ríos
6 Entre Ríos
Quiero contar DNI por Jurisdicción, quedando una tabla que sea:
DNI JURISDICCION
3 Bs As
3 Entre Ríos
Tanto DNI como Jurisdicción son factores.
Muchas gracias.
Saludos, Juan.
2010 Jan 25
1
Using Protect filter on a merge rules file
Hy, I've a strange problem using rsync version
3.0.6 protocol version 30:
My /etc/rsyncd.conf:
---------------------------------------------------
...
[bianco-home]
read only = no
filter = . /etc/rsync/filter/bianco-home
path=/home/bianco/
list = yes
use chroot = no
auth users = bianco
uid= bianco
secrets file = /etc/rsync/rsyncd.secrets
...
2011 Aug 15
2
area under the curve
HI there, I have been trying to use a code posted on R help to be able to calculate area under the curve for complicated data points and there seems to be an issue with the code: no "b" object found. I am not a good R user and can''t find were the problem is. Any help? Thanks!!
This is the code ( as a test run I gave it this info because I know the answer:
x<-seq(1:50)