Displaying 20 results from an estimated 6000 matches similar to: "contour(): Thickness contour labels"
2000 Feb 16
2
contour() labels (PR#441)
R-0.99.0a now plots contour labels from contour(), but the values in
levels seem to be coerced to integer.
Reproduce by:
> set.seed(2)
> contour(matrix(runif(36),nrow=6), labcex=1.2)
and compare with:
> set.seed(2)
> contour(matrix(10*runif(36),nrow=6), labcex=1.2)
Ray Brownrigg
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list --
2003 Jun 26
1
Fonts on contour maps...
Hello All,
I am drawing four contour plots on a 2x2 layout. I need to downsize the
contour line labels. cex and labcex do not seem to work. Any suggestions?
Thanks,
John.
--
--------------------------------------------------------------------------
Dr. John Janmaat
Department of Economics, Acadia University, Wolfville, NS, B4P 2R6
E-mail: jjanmaat at acadiau.ca Web:
2000 Jan 17
1
lwd patches for "contour"
I found it useful to have contour be able to do line widths ... hope
that the guts haven't changed an enormous amount in the current
development version ... the patches are relatively trivial, mostly going
by analogy with lty and col (although in my ignorance it took me a while
to figure out what UNPROTECT(2) was and why it should be changed to
UNPROTECT(3) ... hope this is useful.
Ben
2009 Nov 22
1
contour(): lines & labels in different colours?
Greetings, All!
I want to draw contour lines in red, using contour(), but also
have the contour labels (for the level-values) in black so that
they will stand out against a coloured background already generated
using filled.contour() (the background shades from green at low
levels of "risk" to red at high levels).
In any case, contour labels in red are already somewhat inconspicuous
2003 Dec 14
1
contour() should handle the asp parameter
Hi all,
To my knowledge, the current version of contour.default() does not handle the 'asp' parameter. This can be embarassing when displaying eg geographical maps, etc... Submitted to the opinion of more experienced R programmers, contour.defaut() function should be changed according to the followings:
line 7: add = FALSE,asp=NA,...)
line 33: plot.window(xlim, ylim,
2011 Mar 22
1
ks and contour plot labels
Is there an easy way to control the font size for the contour lines
in plots of kde objects in package ks?
The label size seems not obey the cex parameter (which probably
would be the R way of doing it).
2003 Jun 06
1
Contour plot question
In a contour plot having numeric values displayed
next to the contours, is it possible to modify these
numeric values so that they are bolded, enlarged,
and/or placed differently?
Much thanks in advance,
David Paul, Ph.D.
Battelle Memorial Institute
614.424.3176
2011 Jan 29
0
Using 'contour' to compare concentration profiles on the same plot
Hello,
Using the data and code below I've been using R to compare output from two
different solute transport codes, the red contours are from verified code
while the blue contours come from some modified code I've been working on.
The goal is for the contours to match, and although there is currently a
slight discrepancy this would be expected. The plot shows a pulse of
infiltrating
2011 Dec 22
1
overlaid filled contour plots
I'm trying to make a set of contour plots of bivariate kernel density
estimates, showing three such plots overlaid,
similar to this plot
http://euclid.psych.yorku.ca/SCS/Private/Test/ridge-boot2.pdf
except that I would like to have the contours *filled* (using
transparent colors). To make this reproducible, I've
saved the results of KernSmooth::bkde2D() in the following file:
2012 Mar 23
1
Cambiar tamaño de la etiqueta en un contour plot
Estimada comunidad, otra vez con una pregunta de formato, existe una forma
simple (complicadas ya he encontrado) de cambiar el tamaño de las etiquetas
de las lineas de contorno en un contour plot ??
de las posibilidades simples he probado con todas las opciones para
etiquetas en par() pero las del interior del grafico no cambian
muchas gracias,
saludos, eric.
--
Nota: las tildes se han
2006 Mar 04
1
xyplot/levelplot: thickness of tickmarks
Hi,
if I use the xyplot (or levelplot) function (lattice library) with
the option axs="i", I have the problem that the tickmarks lie a bit
outside the "plot-box". Consider for example:
library(lattice)
x<-seq(0,1,by=0.01)
y<-seq(0,1,by=0.01)
xyplot(y~x,type="l",xlim=c(0,1),ylim=c(0,1),scales=list
2011 Dec 06
2
axis thickness in plot()
Hello,
I am trying to increase the thickness of the axis in plot() without
reverting to the use of paint programs
i see posts on that topic for the xyplot function but want to see if i can
do it with plot() because i've already setup my graph script using that
i thought i could use axis() function and specify lwd="thickness" or
lwd.axis= but that does not work like it does for
2008 May 14
1
lw in legend also changes thickness of characters in the legend??
Here's a simple example:
x <- 1:5
plot(x,x^2)
lines(x,x^2)
points(x,x,cex=2)
lines(x,x,lw=3)
legend("topleft",legend=c("y=x^2","y=x"),pch=1,pt.cex=1:2,lw=c(1,3))
The thickness of the circles in the legend changes with lw. If you change
the lw argument in legend to lw=c(1,1) then the thickness of the circles
goes back to normal. How can I make the above
2009 Jul 30
2
how to change the thickness of the lines of the boxplot outliers
Hi,
I tried to use boxplot function. I am following the ?boxplot and can
change the whisker box width using lwd parameter. However, when
outline=TRUE, the thickness of the circle of the outliers is not
proportionally changed when I change the line width of the whisker
box. There must be another parameter for that. Unfortunately I don't
know.
please help and thanks much in advance.
--
2002 Dec 14
1
adding contour lines to a filled.contour
Hi all,
Does anybody know how to add contour lines to a filled contour plot?
I want to draw a single contour around values that are above a certain
level (e.g., significant). The problem I'm having is that since the
filled.contour command actually draws two plots (data and the key),
adding contour lines paints them over both plots.
Any suggestions?
Thanks, Andy
#~~~~~~~~~~~~~~~~~~~
2005 Jan 14
2
contour and filled contour plots
Hello,
I'd like to remove color bar from "filled.contour"
plot.
Is it possible and how?
I also want to overlay "contour" plot on
filled.contour
but due to scaling of the "filled.contour" to
account for the color bar, aspect ratio for "contour"
is different from "filled.contour". Can this problem
be solved?
Thanks,
Mark
2006 Feb 13
2
Plotting contour & filled.contour in one graph
Dear All,
I have a question on overlaying a filled.contour (e.g. on soil properties data) and contour (by elevation) in one graph. Both have the same z matrix dimension. I'm able to overlay both graph, but the plots dimension did not overlap well on the same plots. How can I have both filled.contour and contour on the same graph? The commands that I have written are as follows:
2011 Feb 11
2
Using filled.contour and contour functions together
Dear R help contributors,
I'd like to plot ground temperature with time on X-axis and depth on Y-axis
on this datasets ( http://r.789695.n4.nabble.com/file/n3301033/NEdaily.csv
NEdaily.csv ), and to do so I use the following commands:
library(RSEIS)
xNE <- seq(1, as.numeric(as.Date(max(NEdaily[[1]])) -
as.Date(min(NEdaily[[1]]))), 1)
yNE <- rev(c(-0.3, -0.5, -0.7, -0.9, -1.1,
2004 Jan 31
1
about contour - get contour coordinates - exclude area display
Dear all,
I wonder about what could actually be possible with the function "contour":
1/ - the definition of contour lines is most often meaningless when the contours are drawn in areas where no real data points exist.
It can however happen that irregular distributions lead to more or less irregular clouds of data points. Interpolations (eg: loess
regression, GLM, etc...) are however
2003 Jul 27
1
contourplot:how to get it to label all contours like 'contour'
Hi,
one of the nice things about contour is that it labels all contour lines.
contourplot only labels each particular elevation a single time.
i.e., if there are two contour lines corresponding to z = 45, it will only
label one of them.
is there a way to get contourplot to automatically label all the contour lines,
even those that are repeated?
i ask because i want to plot contour plots *w/