search for: yinc

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

Did you mean: inc
2007 Apr 05
1
Ignoring increment hint when maximized horz/vert
...(but it wouldn't allow resize at all if aspect is constrained-- should we?). What do you folks think? --- src/window.c +++ src/window.c @@ -4059,8 +4059,13 @@ constrainNewWindowSize (CompWindow *w, if (flags & PResizeInc) { - xinc = MAX (xinc, hints->width_inc); - yinc = MAX (yinc, hints->height_inc); + if (!d->opt[COMP_DISPLAY_OPTION_IGNORE_HINTS_WHEN_MAXIMIZED].value.b || + !(w->state & CompWindowStateMaximizedHorzMask)) + xinc = MAX (xinc, hints->width_inc); + + if (!d->opt[COMP_DISPLAY_OPTION_IGNORE_HINTS_WHE...
2007 Jul 13
2
trouble compiling Hmisc package
...oeffd.f -o hoeffd.o g95 -fPIC -g -O2 -c jacklins.f -o jacklins.o g95 -fPIC -g -O2 -c largrec.f -o largrec.o In file largrec.f:27 DO xl=xlim(1),xlim(2)-width,xinc 1 Error: Loop variable at (1) must be a scalar INTEGER In file largrec.f:28 DO yl=ylim(1),ylim(2)-height,yinc 1 Error: Loop variable at (1) must be a scalar INTEGER In file largrec.f:29 DO xr=xl+width,xlim(2),xinc 1 Error: Loop variable at (1) must be a scalar INTEGER In file largrec.f:30 DO yu=yl+height,ylim(2),yinc 1 Error: Loop...
2008 Apr 15
4
heavy graphs
Dear R community, I am creating large graphs with hundreds of thousands of datapoints. My usual way for output was pdf, but now I am getting file sizes of >30Mb that do not open well (or at all) in Adobe. Is there a way to reduce the resolution or get rid of overlaying datapoints? Any other idea is also warmly welcome! Thank you and wishing you a good day! Georg. **********************
2004 Dec 03
1
How to wrap or split labels on plot
...tach labels (names) to data rownames(test) <- c("Mount Pleasant","Jordan","Oil City","Pleasant Valley","Village of Lake Isabella","Rosebush") # Set plot limits: xmax <- nrow(test) nvec <- ncol(test) ymax <- ceiling(max(test)) yinc <- 1 # Generate Pareto order test <- test[order(test[,1],decreasing=TRUE),] # Set color palette MyCols <- rep(c("lightcyan","cornsilk","lavender"), each = xmax) # Adjust the margins par(mar = c(7, 5, 6, 3)) # Bar graph mp <- barplot(test, beside = TRUE,...
2003 Nov 12
3
(no subject)
Hi all, I am looking for a clever way to create the following graph using R: I got information on the shares of some subgroups over time (summing up to 1 in each year). The graph I want to create should display the development of the individual shares over time by shading rectangulars for each share in a different color. Is there a clever of doing this? Thanks for your help Stefan
2007 Sep 04
3
how to do interpolation
Hello R Users, How to make a variable equidistance with time i.e. how to interpolate a variable if it is not sampled at equal time interval. Many thanks, Regards, Yogesh [[alternative HTML version deleted]]