search for: madr

Displaying 20 results from an estimated 37 matches for "madr".

Did you mean: made
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 e...
2018 Nov 25
3
Variables: non-numeric argument to 'pairs'
Hola a todos Estoy cargando una base de datos a R llamada "Base", desde excel. A la hora de utilizar funciones como: >pairs(Base) Error in pairs.default(Base) : non-numeric argument to 'pairs' Una forma de arreglar este problema es utilizando la funcion as.numeric(), pero me toca hacerlo variable por variable: >Base$Variable1<-as.numeric( Base$Variable1)
2010 Nov 21
8
[beginner] simple keyword to exit script ?
I have tried quit(), and return() but first exits from whole graphical interface and second is only for functions. What I need only to exit from current script and return to the console. -- View this message in context: http://r.789695.n4.nabble.com/beginner-simple-keyword-to-exit-script-tp3052417p3052417.html Sent from the R help mailing list archive at Nabble.com.
2013 Apr 25
0
Superposición de matrices pre nlme o lmer
...lmer. Mi idea va relacionada a correr un modelo lineal mixto en el cual una de las matrices de incidencia (Z), sea previamente formada por la suma de dos matrices o por su puperposición (Z1+Z2=Z) dentro de esas funciones. Con un ejemplo creo que me explicaré mejor outputF<-lmer(formula=ALT~ (1|MADRE)+(1|PADRE)+(1|FAMILIA), data=datosF) El modelo anterior me permite correr el efecto aleatorio de padre y madre por separado, considerando que cada uno corresponde a una columna de mi base de datos, pero mi intención es superponer estas matrices o sumarlas (si es que no estoy errado en el término...
2010 Dec 07
4
increase or decrease variable by 1
many languages have shorthands for that operation like: variable += 1 or ++variable is there something like that in R ? -- View this message in context: http://r.789695.n4.nabble.com/increase-or-decrease-variable-by-1-tp3076390p3076390.html Sent from the R help mailing list archive at Nabble.com.
2010 Nov 21
3
how to get rid of unused space on all 4 borders in plot() render
x= c(1,5,7,-3,4) y= c(2,4,-5,2,5) plot(x,y,ylim=c(-20,20),xlim=c(min(x),max(x)),pch='X',col = rgb(0, 0, 0, 0.5),yaxt="n", ann=FALSE) and this code produces: http://i53.tinypic.com/ffd7d3.png Where I marked in red areas that I want to get rid of and use as much real screen estate as I can. -- View this message in context:
2010 Nov 22
3
"unexpected numeric constant" while reading tab delimited csv file
my csv file is very simple - just one line for purpose of this test: 0{TAB}0 and read function is this: csvdata = read.csv(file="d:/s/test.csv",head=FALSE,sep="\t") then error comes: Error in source("d:/test.csv") : d:/test.csv:1:9: unexpected numeric constant 1: 0 0 but when I change delimiter to ; (colon) then error not shows up anymore -- View this
2010 Dec 07
3
how to get vector of data from line ?
I have created a density line d<- density(X) now I need to read values from that line for example what is the value of this line at x = 1, 2, 3 etc... -- View this message in context: http://r.789695.n4.nabble.com/how-to-get-vector-of-data-from-line-tp3076943p3076943.html Sent from the R help mailing list archive at Nabble.com.
2004 Aug 06
2
ices...mount points (and a LAME question)
...Mountpoint> > </ices:Server> This doesn't work for me. Ices report right what i specified in <ices:Mountpoint><ices:Mountpoint> but Icecast still report icy_0 and icy_1 as mountdir I'm using Icecast from debian woody distribution. Do you have any sugestions? Thank, Madr -- Martin Dressler e-mail: dr@musicabona.cz http://www.musicabona.com/ --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the wo...
2010 Dec 07
2
longer object length is not a multiple of shorter object length
In datamatrix[, "y"] == datamatrix[, "y"][-1] : longer object length is not a multiple of shorter object length out = c(FALSE,datamatrix[,'y'] == datamatrix[,'y'][-1]) and I do not know why I get that error, the resulting out matrix is somehow one row larger than datamatrix... all I try to do is filter matrix by dropping rows where [,'y'][-1] ==
2004 Aug 06
5
processing icecast logs
Do you know some program which process icecast log and make some nice graphs similar to webalizer's. Thanks, Madr -- Martin Dressler e-mail: dr@musicabona.cz http://www.musicabona.com/ --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the wo...
2014 Oct 19
3
Warnings en GLMM (lme4)
...previamente por el logaritmo). Tamaño de parche, factor explicativo, Nº de pollos y fecha de puesta covariables. Además he incluido como random el año de estudio (3 años), el ID del nido anidado dentro del ID de cada parche (tengo varios parches, grandes y pequeños) y la identidad del padre y de la madre también como rándom, puesto que se pueden repetir entre años. La estructura de mi modelo es la siguiente: #paquete(lme4), mi versión de R es la 3.1.1. m1<- glmer(ncebas~offset(LogDur_video)+ TamañoParche*Ldate*Csize+(1|YEAR) + (1|Bosque/nideo)+ (1|Hembra) + (1|Macho), data=Cebas, family=poisso...
2010 Nov 22
2
I need a very specific unique like function and I don't know even how to properly call this
consider this matrix: [,1] [,2] [1,] 3 7 [2,] 6 5 [3,] 7 5 [4,] 3 5 [5,] 7 5 [6,] 5 5 [7,] 8 4 [8,] 2 4 [9,] 7 4 [10,] 0 6 I need to delete all rows where column 2 above and below has the same value, so the effect would be: [,1] [,2] [1,] 3 7 [2,] 6 5 [6,] 5 5 [7,] 8 4 [9,] 7 4 [10,] 0 6
2008 Dec 21
2
corruption happening sometimes when I do a shutdown -r now
...21:29 2008) /shirish/.mozilla/firefox/h7vfyd3o.default/Cache/4A0B1529d01 (inode #991336, mod time Thu Dec 18 11:57:04 2008) /shirish/.mozilla/firefox/h7vfyd3o.default/Cache/2A406716d01 (inode #991335, mod time Thu Dec 18 11:56:58 2008) Clone multiply-claimed blocks? yes File /shirish/Ma.Mere.(Mi.Madre).DVDRip.[www.nosolotorrents.com]/Ma.Mere.(Mi.Madre).DVDRip.[www.nosolotorrents.com].avi (inode #114733, mod time Sat Nov 29 23:41:02 2008) has 1 multiply-claimed block(s), shared with 1 file(s): /shirish/.mozilla/firefox/h7vfyd3o.default/bookmarkbackups/bookmarks-2008-12-20.json (inode #163844,...
2004 Aug 06
1
multistreams
...is no problem. This is on localnet (10MB) and cpu usage is on 30% so this shouldn't be a problem. I'm using ices from cvs with lame 3.88 and Icecast 1.3.10 from debian woody. for listening I'm using winamp. My linux kernel is 2.2.18 Do you have any suggestions. Is it known bug? Thank, Madr -- Martin Dressler e-mail: dr@musicabona.cz http://www.musicabona.com/ --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the wo...
2001 Jul 03
1
python playlist bug?
...found that the body of script is executed everytime any function (like ices_get_next_song) is called. This cause that when you use sceleton (ices.py.dist) it doesn't work. I mean this line songnumber=-1 at begin of file. My python is version 1.5.2 It's a bug or normal behavior? Regards, Madr -- Martin Dressler e-mail: dr at musicabona.cz http://www.musicabona.com/ --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request at xiph.org' containing only...
2010 Dec 07
1
please show me simple example how to plot "Distance-Weighted Least Squares" fitting
I got simple x,y pairs of data and simple scatterplot and just cannot figure how to do it , there are many examples but always there is error popping out please show me an example stripped with additional data just core of what I need to do to get this damn line -- View this message in context:
2010 Dec 08
1
how to strip list from NA values looking only at one column ?
I have got a list with 3 colums x,y,z, now I want do delete whole rows where column z has NA values I am not intereted in x and y columns if there are also NA values or not, moreover I do not want to touch them because if there would be NA that would mean a more serious error for me, and I have cath for that somewhere else I am asking because I only saw an example where function loops over all
2010 Dec 08
1
how to make partial mean() of a matrix only when second value matching some logic
for example I have matrix with two columns x,y 1,0.56 2,9.55 2,7.56 5,2.55 5,0.56 3,0.55 2,0.56 2,1.56 so I need to take average from y values placed where x==2 -- View this message in context: http://r.789695.n4.nabble.com/how-to-make-partial-mean-of-a-matrix-only-when-second-value-matching-some-logic-tp3078449p3078449.html Sent from the R help mailing list archive at Nabble.com.
2010 Nov 22
1
how to round only one column of a matrix ?
round() function affects all values of a matrix, I want only to round column that is called 'y'. -- View this message in context: http://r.789695.n4.nabble.com/how-to-round-only-one-column-of-a-matrix-tp3054363p3054363.html Sent from the R help mailing list archive at Nabble.com.