search for: cont11

Displaying 3 results from an estimated 3 matches for "cont11".

Did you mean: cont1
2009 Nov 20
2
[LLVMdev] llc barfing
...cont14, %pass7 %20 = add i32 %1, 1 ; <i32> [#uses=1] %21 = tail call fastcc i8* @"visit_array_aux<`Reference>"(%0 %0, i32 %20) ; <i8*> [#uses=1] ret i8* %21 fail9: ; preds = %fail6 br label %cont11 pass10: ; preds = %fail6 %22 = extractvalue %0 %17, 1 ; <i32> [#uses=1] %23 = icmp slt i32 %18, %22 ; <i1> [#uses=1] br label %cont11 cont11: ; preds = %pas...
2014 Nov 24
1
[LLVMdev] RFC: How to represent SEH (__try / __except) in LLVM IR
...; preds = %catch, %invoke.cont8 call void @_ZN5OuterD1Ev(%class.Outer* %outer) ret void ; Post catch cleanup for lpad, lpad1 ehcleanup10: ; preds = %catch.dispatch invoke void @_ZN5OuterD1Ev(%class.Outer* %outer) to label %invoke.cont11 unwind label %terminate.lpad invoke.cont11: ; preds = %ehcleanup10 br label %eh.resume eh.resume: ; preds = %invoke.cont11 %exn12 = load i8** %exn.slot %sel13 = load i32* %ehselector.slot %lpad.val = insertvalue { i...
2013 Jan 01
1
Order variables automatically
...? 0 ? ? 0 ....... .... ############ data<-read,table("example.txt") data <- as.data.frame(lapply(data, ordered)) ############ Now, suppose I have bigger dataset where some variables are categorical (cat) and others are continuous (cont).. cat1 cat2 cont1 cont2 ...cont10 cat3 cont11....cat 40 cont25? etc. Is there a way to code so that R goes through each variable and orders a variable if it is categorical and leaves a variable alone if it is continuous? Thanks, ?Debs