search for: psplit

Displaying 2 results from an estimated 2 matches for "psplit".

Did you mean: split
2011 Feb 17
1
missing values in party::ctree
....nuclei, Bl.cromatin, Normal.nucleoli, Mitoses Number of observations: 699 1) Bare.nuclei == {1, 2}; criterion = 1, statistic = 488.294 2)* weights = 448 1) Bare.nuclei == {3, 4, 5, 6, 7, 8, 9, 10} 3)* weights = 251 > sum(is.na(BreastCancer$Bare.nuclei)) [1] 16 > nodes(ct, 1)[[1]]$psplit Bare.nuclei == {1, 2} > nodes(ct, 1)[[1]]$ssplit list() Based on below, the answer is node 2, but I don't see it in the object. > sum(BreastCancer$Bare.nuclei %in% c(1,2,NA)) [1] 448 > sum(BreastCancer$Bare.nuclei %in% c(1,2)) [1] 432 > sum(BreastCancer$Bare.nuclei %in% c(3:10))...
2013 Oct 28
0
Re: [Qemu-devel] Hvmloader: Modify ACPI to only supply _EJ0 methods for PCIslots that support hotplug by runtime patching
...pi_extract.py requires this. > + > +import re; > +import sys; > +import fileinput; > + > +def die(diag): > + sys.stderr.write("Error: %s\n" % (diag)) > + sys.exit(1) > + > +# Note: () around pattern make split return matched string as part of list > +psplit = re.compile(r'''''' ( > + \b # At word boundary > + ACPI_EXTRACT_\w+ # directive > + \s+ # some whitespace > + \w+ # array name > + )...