search for: v2b

Displaying 12 results from an estimated 12 matches for "v2b".

Did you mean: v2
2023 Aug 10
2
Expresión en un objeto
Hola a todos: Se me ha planteado un problema que no está ligado a ningún problema concreto. Es más teórico. Supongamos que tenemos tres variables: V1 <- c (47, 71, 41, 23, 83, 152, 82, 8, 160, 18) V2a <- c (NA, 36, 15, 5, 56, 18, NA, 5, NA, 5) V2b <- c (37, NA, 15, NA, NA, NA, 90, NA, 161, NA) Supongamos que tengo la expresión (que no puedo asignarlo a ninguna variable): (ifelse (is.na (V2a) & ! is.na (V2b), V2b, V2a)) Supongamos que tengo que utilizar esta expresión dos o más veces y no puedo utilizar ni un xapply () ni un...
2023 Aug 12
1
Expresión en un objeto
...ica de la expresión que quieres reutilizar y luego llamar a esa > función > > donde sea necesario. > > > > He aquí cómo podrías hacerlo: > > > > V1 <- c(47, 71, 41, 23, 83, 152, 82, 8, 160, 18) > > V2a <- c(NA, 36, 15, 5, 56, 18, NA, 5, NA, 5) > > V2b <- c(37, NA, 15, NA, NA, NA, 90, NA, 161, NA) > > > > # Definir una función que encapsula la lógica de la expresión > > myFunc <- function(V2a, V2b) { > > ifelse(is.na(V2a) & !is.na(V2b), V2b, V2a) > > } > > > > # Luego puedes usar esa función d...
2023 Aug 11
1
Expresión en un objeto
...ltado utilizando una función. Una función te permitiría encapsular la lógica de la expresión que quieres reutilizar y luego llamar a esa función donde sea necesario. He aquí cómo podrías hacerlo: V1 <- c(47, 71, 41, 23, 83, 152, 82, 8, 160, 18) V2a <- c(NA, 36, 15, 5, 56, 18, NA, 5, NA, 5) V2b <- c(37, NA, 15, NA, NA, NA, 90, NA, 161, NA) # Definir una función que encapsula la lógica de la expresión myFunc <- function(V2a, V2b) { ifelse(is.na(V2a) & !is.na(V2b), V2b, V2a) } # Luego puedes usar esa función donde necesites la expresión V3 <- ((myFunc(V2a, V2b) - V1)/V1)*10...
2023 Aug 11
1
Expresión en un objeto
...n te permitiría encapsular la > lógica de la expresión que quieres reutilizar y luego llamar a esa función > donde sea necesario. > > He aquí cómo podrías hacerlo: > > V1 <- c(47, 71, 41, 23, 83, 152, 82, 8, 160, 18) > V2a <- c(NA, 36, 15, 5, 56, 18, NA, 5, NA, 5) > V2b <- c(37, NA, 15, NA, NA, NA, 90, NA, 161, NA) > > # Definir una función que encapsula la lógica de la expresión > myFunc <- function(V2a, V2b) { > ifelse(is.na(V2a) & !is.na(V2b), V2b, V2a) > } > > # Luego puedes usar esa función donde necesites la expresión >...
2023 Aug 11
1
Expresión en un objeto
...s] Expresión en un objeto Hola a todos: Se me ha planteado un problema que no está ligado a ningún problema concreto. Es más teórico. Supongamos que tenemos tres variables: V1 <- c (47, 71, 41, 23, 83, 152, 82, 8, 160, 18) V2a <- c (NA, 36, 15, 5, 56, 18, NA, 5, NA, 5) V2b <- c (37, NA, 15, NA, NA, NA, 90, NA, 161, NA) Supongamos que tengo la expresión (que no puedo asignarlo a ninguna variable): (ifelse (is.na (V2a) & ! is.na (V2b), V2b, V2a)) Supongamos que tengo que utilizar esta expresión dos o más veces y no puedo utilizar ni un xapply () ni un...
2023 Jan 26
2
Resumen de R-help-es, Vol 167, Envío 10
...sta es una solución library(data.table) library(stringr) dt <- data.table( V1a = sample(c("1","0"), 10, TRUE) , V1b = sample(c("1","0"), 10, TRUE) , V2a = sample(c("1","0"), 10, TRUE) , V2b = sample(c("1","0"), 10, TRUE) , V3a = sample(c("1","0"), 10, TRUE) , V3b = sample(c("1","0"), 10, TRUE) , V4a = sample(c("1","0"), 10, TRUE) , V4b = sampl...
2023 Jan 27
0
Resumen de R-help-es, Vol 167, Envío 10
...y(stringi) > > > > df <- data.frame( V1a = sample(c("1","0"), 10, TRUE) > + , V1b = sample(c("1","0"), 10, TRUE) > + , V2a = sample(c("1","0"), 10, TRUE) > + , V2b = sample(c("1","0"), 10, TRUE)) > > df > V1a V1b V2a V2b > 1 1 0 1 1 > 2 1 1 0 1 > 3 0 0 0 0 > 4 1 0 1 0 > 5 0 1 0 0 > 6 0 0 1 0 > 7 1 0 0 0 > 8 1 1 1 0 > 9 0 0...
2023 Jan 28
0
Resumen de R-help-es, Vol 167, Envío 10
...y(stringi) > > > > df <- data.frame( V1a = sample(c("1","0"), 10, TRUE) > + , V1b = sample(c("1","0"), 10, TRUE) > + , V2a = sample(c("1","0"), 10, TRUE) > + , V2b = sample(c("1","0"), 10, TRUE)) > > df > V1a V1b V2a V2b > 1 1 0 1 1 > 2 1 1 0 1 > 3 0 0 0 0 > 4 1 0 1 0 > 5 0 1 0 0 > 6 0 0 1 0 > 7 1 0 0 0 > 8 1 1 1 0 > 9 0 0...
2012 Jan 31
2
question of merging two dataframes
...hat the value of the second column in database A is less than the value of the second column in database B. Is there a R code to do this? Thanks Dataframe A: V1a V2a V3a 1 2 3 5 2 3 4 6 3 Dataframe B: V1b V2b V3b 1 2 5 9 2 9 2 7 Dataframe C should be: V1a V2a V3a V1b V2b V3b 1 2 3 5 2 5 9 -- View this message in context: http://r.789695.n4.nabble.com/question-of-merging-t...
2012 Dec 14
2
Manipulation of longitudinal data by row
...d no value for the 3 variables) and are ignored. Eventually I have to determine mean time to resolution, mean follow-up time, etc and I think I can do that, but the first part is a bit beyond my coding skill. Suggestions appreciated. tC <- textConnection(" ID V1Date V1a V1b V1c V2date V2a V2b V2c V3date V3a V3b V3c 001 4/5/12 Yes Yes No 6/18/12 Yes No Yes NA NA NA NA 002 1/22/12 No No Yes 7/5/12 Yes No Yes NA NA NA NA 003 4/5/12 Yes No No 9/4/12 Yes No Yes 11/1/12 Yes No Yes 004 8/18/12 Yes Yes Yes 9/22/12 Yes No Yes NA NA NA NA 005 9/6/12 Yes No No NA NA NA NA 12/4/12 Yes No Yes "...
2011 Jul 14
1
Repating a loop of lm function with different columns of database
...ted to get the p-value in a dataframe with three columns: Fitst column: analyte name (that´s the name of the column)Second column: pvalue of the first measure of the analte predicting the second measureThird column: The effect of time I copy a samller example: txt <- "V1a V2a V3a V1b V2b V3b TimeDifferenceDays2.42 72.4 3.75 2.46 55.4 4.44 6081.66 89.7 2.54 2.17 94.0 2.15 4192.45 112. 0.46 2.40 129.0 .42 7142.58 55.6 5.05 2.44 135.0 5.39 7212.61 332.0 22.6 3.55 238.0 16.4 729" Data <- read.table(textConnection(txt), header = TRUE) Thank you Jon Toledo, MD Postdoctoral f...
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...VT|93vfaj5o7)+i4p?>vV@>a5Yzd$d ztp6#1J%H!$V(fLmukS`#0quXn*kZs^zyZMApQ29hVeC~j)+c~(>3JWXfW1Ehe}2>t z;3+^az~^Lq)A1^(iqb>S_W<vdFg6G9o1deO0gC}Q|AMjK0-8RIvIC9+*8dXi`v_<Q zUU(E?fImOR*dxD!IRrTQYozH08|HDwJ_WS;4P!CDG(ZjDBH%~e(JugXfOWrRY{e6( z%O~;t9qJ+k`oBlN0z at pv&H-KvBTa<%y`x{0;v2B*Dd0ts_a7Kr6+^k6VQkHx(5Ieb zEc|EmufL$p|BJC-zQ9=L9;nY38M_q_1iTJd0oc(KZSYq-0W)4g9sUh{=kF;0|3esH z_CFZw`QMD){y)I`C&~xt8E5Qoy}>7DpW%RQeHa_u7j4oHeGV{a0C;(su_p&I_UJ2& z-8YD_qQR)=R~h>TaCiv%z-wslp^W|fb>O at KQyTD_H&H&o`C+K{;TUvp!H@;a9f9|e zjO_y)e;aN1F6wp^ZSh8bs9<b<CF*cAWB#...