search for: y_range

Displaying 6 results from an estimated 6 matches for "y_range".

Did you mean: d_range
2014 Mar 06
0
[PATCH] nv50, nvc0: adjust blit_3d handling of ms output textures
...ce.c index dc6d628..6073deb 100644 --- a/src/gallium/drivers/nouveau/nv50/nv50_surface.c +++ b/src/gallium/drivers/nouveau/nv50/nv50_surface.c @@ -977,6 +977,7 @@ nv50_blit_3d(struct nv50_context *nv50, const struct pipe_blit_info *info) float x0, x1, y0, y1, z; float dz; float x_range, y_range; + float x_output, y_output; blit->mode = nv50_blit_select_mode(info); blit->color_mask = nv50_blit_derive_color_mask(info); @@ -996,11 +997,14 @@ nv50_blit_3d(struct nv50_context *nv50, const struct pipe_blit_info *info) x_range = (float)info->src.box.width / (float)info-&...
2012 Dec 28
1
Using grImport to create a watermark
....picture(…) successfully in a R script, but when I attempt to do do this in my script: • • • postscript(outputFilename,paper="us") grid.picture(noaalogo,distort=FALSE,width=0.5,x=0.50,y=0.50) grid.rect(gp=gpar(fill=rgb(1,1,1,0.9))) plot(dat,xaxt="n",type="b",ylim=c(y_range[1],y_range[2]),main=labelStr,xlab="Date",ylab="Elevation, NAVD88 (Ft)") • • • dev.off() The picture "noaalogo" is drawn, but either the plot() is obscured or is not drawn at all. In either case, the "watermarking" effect is not happening in my script, but do...
2011 Jun 30
2
volcano plot.r
...],new_mats[[2]][,ii+1])$p.value         }          m<-length(pvals)     x_range<-range(c(         min(             range(log2(folds[2,])),             range(c(-1.5,1.5))             ),         max(             range(log2(folds[2,])),             range(c(-1.5,1.5))             )         ))     y_range<-range(c(         min(range(-log10(pvals)),             range(c(0,2))             ),         max(range(-log10(pvals)),             range(c(0,2))             )         ))          #     #    Plot data     #     # Define a function, since it's rather involved     volcano_plot<-function(fold...
2011 Jun 20
2
(no subject)
...],new_mats[[2]][,ii+1])$p.value } m<-length(pvals) x_range<-range(c( min( range(log2(folds[2,])), range(c(-1.5,1.5)) ), max( range(log2(folds[2,])), range(c(-1.5,1.5)) ) )) y_range<-range(c( min(range(-log10(pvals)), range(c(0,2)) ), max(range(-log10(pvals)), range(c(0,2)) ) )) # # Plot data # # Define a function, since it's rather involved volcano_plot<-function(fold...
2010 Sep 23
3
accumulation curves
Hi, I am trying to fit a logarithmic trendline to a scatterplot of a species accumulation curve. I've tried abline, lines, curve and scatter.smooth but none of these work. Can anyone help please, Kyran
2011 Jun 30
0
help with interpreting what nnet() output gives:
...],new_mats[[2]][,ii+1])$p.value ? ? ? ? } ? ?? ? ? m<-length(pvals) ? ? x_range<-range(c( ? ? ? ? min( ? ? ? ? ? ? range(log2(folds[2,])), ? ? ? ? ? ? range(c(-1.5,1.5)) ? ? ? ? ? ? ), ? ? ? ? max( ? ? ? ? ? ? range(log2(folds[2,])), ? ? ? ? ? ? range(c(-1.5,1.5)) ? ? ? ? ? ? ) ? ? ? ? )) ? ? y_range<-range(c( ? ? ? ? min(range(-log10(pvals)), ? ? ? ? ? ? range(c(0,2)) ? ? ? ? ? ? ), ? ? ? ? max(range(-log10(pvals)), ? ? ? ? ? ? range(c(0,2)) ? ? ? ? ? ? ) ? ? ? ? )) ? ?? ? ? # ? ? # ? ?Plot data ? ? # ? ? # Define a function, since it's rather involved ? ? volcano_plot<-function(fold...