search for: class_data

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

2016 Apr 29
2
selecting columns from a data frame or data table by type, ie, numeric, integer
...t;j") c <- seq(1.1, .2, length = 10) dt1 <- data.table(a,b,c) str(dt1) col.classes <- sapply(dt1, class) head(col.classes) dt2 <- subset(dt1, typeof = "double" | "numeric") str(dt2) dt2?? #? not subset dt2 <- dt1[, list(typeof = "double")] str(dt2) class_data <- dt1[,sapply(dt1,is.integer) | sapply(dt1, is.numeric)] class_data sum(class_data) typeof(class_data) names(class_data) str(class_data) ?Any help is appreciated Carl Sutton CPA [[alternative HTML version deleted]]
2016 Apr 29
0
selecting columns from a data frame or data table by type, ie, numeric, integer
...dt1 <- data.table(a,b,c) > str(dt1) > col.classes <- sapply(dt1, class) > head(col.classes) > dt2 <- subset(dt1, typeof = "double" | "numeric") > str(dt2) > dt2 # not subset > dt2 <- dt1[, list(typeof = "double")] > str(dt2) > class_data <- dt1[,sapply(dt1,is.integer) | sapply(dt1, is.numeric)] > class_data > sum(class_data) > typeof(class_data) > names(class_data) > str(class_data) > Any help is appreciated > Carl Sutton CPA > > [[alternative HTML version deleted]] > > _________________...
2012 Jan 24
2
[PATCH 26/28] pci: convert to QEMU Object Model
...ro100_get_class_by_name(const char *typename) +{ + E100PCIDeviceInfo *info = NULL; + int i; + + /* This is admittedly awkward but also temporary. QOM allows for + * parameterized typing and for subclassing both of which would suitable + * handle what''s going on here. But class_data is already being used as + * a stop-gap hack to allow incremental qdev conversion so we cannot use it + * right now. Once we merge the final QOM series, we can come back here and + * do this in a much more elegant fashion. + */ + for (i = 0; i < ARRAY_SIZE(e100_devices); i++)...