search for: v1c

Displaying 7 results from an estimated 7 matches for "v1c".

Did you mean: v1
2012 Dec 14
2
Manipulation of longitudinal data by row
...visit date, and 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 Ye...
2023 Jan 27
0
Resumen de R-help-es, Vol 167, Envío 10
...as.data.table() > + names(df_tmp) <- paste0(cols_tmp, "c") > + res_df <- cbind(res_df, df_tmp) > + } > + return(res_df) > + } > > > > #--- Sobre df creado > > *resultado <- colcompare(df)* > > resultado > V1c V2c > <num> <num> > 1: 0 1 > 2: 1 0 > 3: 1 1 > 4: 1 1 > 5: 1 1 > 6: 1 1 > 7: 1 1 > 8: 0 0 > 9: 1 1 > 10: 0 1 > #-------------------- > > > Gracia...
2023 Jan 28
0
Resumen de R-help-es, Vol 167, Envío 10
...as.data.table() > + names(df_tmp) <- paste0(cols_tmp, "c") > + res_df <- cbind(res_df, df_tmp) > + } > + return(res_df) > + } > > > > #--- Sobre df creado > > *resultado <- colcompare(df)* > > resultado > V1c V2c > <num> <num> > 1: 0 1 > 2: 1 0 > 3: 1 1 > 4: 1 1 > 5: 1 1 > 6: 1 1 > 7: 1 1 > 8: 0 0 > 9: 1 1 > 10: 0 1 > #-------------------- > > > Gracia...
2007 Dec 17
0
[LLVMdev] Elsa and LLVM and LLVM submissions
...::getInsertElement(VC, NC, IC); > + return LLVMBuilder::CreateInsertElement(Vec, NewElt, Idx, Name); > + } > + > + Value *CreateShuffleVector(Value *V1, Value *V2, Value *Mask, > + const char *Name = "") { > + if (Constant *V1C = dyn_cast<Constant>(V1)) > + if (Constant *V2C = dyn_cast<Constant>(V2)) > + if (Constant *MC = dyn_cast<Constant>(Mask)) > + return ConstantExpr::getShuffleVector(V1C, V2C, MC); > + return LLVMBuilder::CreateShuffleVector(V1, V2, Mask, Name);...
2007 Dec 17
2
[LLVMdev] Elsa and LLVM and LLVM submissions
Devang Patel wrote: > On Dec 15, 2007, at 12:15 PM, Richard Pennington wrote: > >> I got the current version of LLVM via svn yesterday and modified my >> code to >> use the LLVMFoldingBuilder. Very nice! >> >> My question is this: I noticed that the folding builder doesn't fold >> some >> operations, e.g. casts. Is there some reason why? If
2002 Oct 30
4
PDF printer using ps2pdf ?
Hi, Is it possible to set up a printer in samba that will use ps2pdf converter to create pdf documents when printing on it ? Best Regards Steph
2023 Jan 26
2
Resumen de R-help-es, Vol 167, Envío 10
Hola esta 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 =