search for: bldata

Displaying 4 results from an estimated 4 matches for "bldata".

Did you mean: b_data
2009 Jan 21
1
Two similar zoo objects with different structures, how to get same structure?
Dear all, I have a zoo object that has following structure: > str(bldata) zoo [1:5219, 1:12] 91.9 91.8 91.7 91.8 91.7 ... - attr(*, "index")=Classes 'dates', 'times' atomic [1:5219] 7305 7306 7307 7308 7309 ... .. ..- attr(*, "format")= chr "m/d/y" .. ..- attr(*, "origin")= Named num [1:3] 1 1 1970 .. .. ....
2020 Aug 03
1
[PATCH] drm/nouveau/acr: fix a coding style in nvkm_acr_lsfw_load_bl_inst_data_sig()
...ev/acr/lsfw.c b/drivers/gpu/drm/nouveau/nvkm/subdev/acr/lsfw.c index 07d1830126ab..5f6006418472 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/acr/lsfw.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/acr/lsfw.c @@ -191,7 +191,8 @@ nvkm_acr_lsfw_load_bl_inst_data_sig(struct nvkm_subdev *subdev, u32 *bldata; int ret; - if (IS_ERR((lsfw = nvkm_acr_lsfw_add(func, acr, falcon, id)))) + lsfw = nvkm_acr_lsfw_add(func, acr, falcon, id); + if (IS_ERR(lsfw)) return PTR_ERR(lsfw); ret = nvkm_firmware_load_name(subdev, path, "bl", ver, &bl); -- 2.17.1
2009 Jun 30
1
beadarray package
...to upload raw bead-level data using these commands: ######################################################## library(beadarray) datadir <- ("C:/Computer_programs/R/beadarray/cecilia") targets = read.table("targets.txt", sep = "\t", header = TRUE, as.is = TRUE) BLData = readIllumina(arrayNames =NULL, useImages=TRUE, singleChannel=FALSE, backgroundMethod ="rma", annoPkg= NULL, metrics=FALSE, metricsFile="Metrics.txt", normalizeMethod="quantile", tiffExtGrn="_Grn.TIF", tiffExtRed="_Red.TIF") #######################...
2011 Oct 04
0
ggplot2: not displaying annotation (label = expression) in/on graph
...nerated text on plot which is comprised of text and the value of a variable. Thanks to the response from Joshua Wiley <jwiley.psych@gmail.com> on the thread "How to format R superscript 2 followed by "=" value, I can now get R^2 = value. However with the following code: ggplot(blData, aes(x = xData, y = yData)) + geom_point(aes(colour = factor(diagnosis))) + geom_smooth(method = "lm") + opts(legend.position = c(0.75, 0.25)) + scale_colour_discrete(name = "Diagnosis") + labs(x = r2format(t0.lm, output = "R^2 == rval", sub = &quot...