Displaying 20 results from an estimated 27 matches for "boarders".
Did you mean:
boarder
2007 Apr 13
2
White Boarders in AIGLX on non-decorated window types
A patch was submitted to the ML a while ago that cured the problem with
white boarders in Gtk-Window-Decorator. Can this patch be commited or be a
at least fixed up to work with AIGLX?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.freedesktop.org/archives/compiz/attachments/20070413/ac87c932/attachment.html
2013 Oct 30
1
ggplot2 - how to get rid of bar boarder lines
Hello!
I am using ggplot2:
ggplot(myplotdata, aes(x=att_levels, y=WTP)) +
geom_bar(stat="identity",fill="dark orange",colour="black",
alpha = 1,position = "identity") +
geom_text(aes(label=WTP),colour="black",size=4,hjust=1.1,position='dodge') +
coord_flip() +
xlab("") +
2007 Apr 29
3
White boarders on size 32 shadows. Intel platform only
Recently, I brought up a topic about white boarders being drawn instead of
shadows in Gnome-Window-Decorator. A patch was made up by gandalfn to
correct this by making 32 pixel shadows 33 pixels, however the patch was not
committed because it was a workaround.
This is a huge functional annoyance to us intel users and needs to be cured.
There are tw...
2013 Oct 21
2
png(type='cairo'): point symbols without boarders are not anti-aliased?
Hi,
It seems that anti-aliasing in png(type = 'cairo') is not well
supported for the point symbols without boarders, e.g. pch = 16. The
Cairo package works well, though. You can compare png() with
CairoPNG():
png(): http://i.imgur.com/8niB3jX.png
CairoPNG(): http://i.imgur.com/FZBJOxm.png
f = function(dev, ..., main = '') {
dev(...)
plot(c(1, 2, 1, 2), c(1, 1, 2, 2), pch=c(16, 19), cex=c(2, 2, 15,...
2010 Jun 11
2
r code to broaden the boarder of the bars of a histogram
To whom it may concern,
I have a problem concerning the design of a histogram. How do I change
the border widths of the bars of a histogram. The initial command is:
hist (punkte,breaks=30, xlab="Punkte", ylab="H?ufigkeit",
main="Histogramm", col= heat.colors(30), border= "red")
I suspect that it has to do with the "lwd" command but can't
2011 Oct 19
2
A questions regarding R plots
Hi Dear all,
I am making Venn Diagram plots in R. I attached an example:
http://r.789695.n4.nabble.com/file/n3919206/venn.jpeg
I want to get rid of the black boarder line, is there any way to do it?
Thank you very much,
Karena
--
View this message in context: http://r.789695.n4.nabble.com/A-questions-regarding-R-plots-tp3919206p3919206.html
Sent from the R help mailing list archive at
2007 Oct 29
1
shading of curves with polygon
Hello again
With the poylgon function it's possible to plot shaded areas under a curve.
But somehow it connects the start and the endpoint of a line and fills whats between them. I would actually like to set the boarders of the shading by two min and max curves, but I failed.
i tried stl like:
polygon(min, max, border=0), where min and max are my curves plotet by plot(max)
lines(min)
thanks for help
marc
--
Psssst! Schon vom neuen GMX MultiMessenger geh?rt?
Der kann`s mit allen: http://www.gmx.net/de/go/multi...
2011 Oct 25
1
textplot in layout
Hello,
Someone (Erik) recently posted about putting text on a plot. That thread
didn't help. I'd like to put text directly below the 'sub' text (with no
gap). The code below is the best I can do. Note the large undesirable gap
between 'sub' and 'test'. I'd like the word 'test' to be just below the top
box() boarder (directly below 'sub').
year
2008 Apr 29
1
Annoying bug in package cairoDevice
I sent this to R-Help and the listed maintainer of cairoDevice, I hope that
was the right thing to do.
For some reason, Cairo_png puts a box around a figure when you call
plot.new. It looks like box was called with black and a transparent
background. Example:
> library(cairoDevice)
> Cairo_png('cairo.png')
> plot.new()
> dev.off()
null device
1
The boarder is
2010 Oct 18
1
Incorrect positioning of raster images on Windows
...;#FFFFFF" "#000000" "#FFFFFF" "#000000" "#FFFFFF"
[3,] "#000000" "#FFFFFF" "#000000" "#FFFFFF" "#000000"
png('test.png', width=5, height=3, units='px')
# Just want the image, no margins, boarders or other fancy stuff.
par(mar = c(0,0,0,0) )
plot.new()
plotArea = par('fig')
rasterImage(testImage, plotArea[1], plotArea[3],
plotArea[2], plotArea[4], interpolate = FALSE )
dev.off()
However, using R 2.12.0, 64 bit on Windows 7 I have a strange issue where
the image is shifted up by...
2010 Oct 18
1
Incorrect positioning of raster images on Windows
...;#FFFFFF" "#000000" "#FFFFFF" "#000000" "#FFFFFF"
[3,] "#000000" "#FFFFFF" "#000000" "#FFFFFF" "#000000"
png('test.png', width=5, height=3, units='px')
# Just want the image, no margins, boarders or other fancy stuff.
par(mar = c(0,0,0,0) )
plot.new()
plotArea = par('fig')
rasterImage(testImage, plotArea[1], plotArea[3],
plotArea[2], plotArea[4], interpolate = FALSE )
dev.off()
However, using R 2.12.0, 64 bit on Windows 7 I have a strange issue where
the image is shifted up by...
2011 Sep 23
1
spatstat => owin + image
...inates (x,y in WGS84_UMTS for the ones interested)
of sampling points.
This I can do by the standard spatstat prodcedure via owin. I then try to
add an image, which is
a map/satellite photo in the background.
Firstly
Problem: With the current code, I can not get the edges of the image to
match the boarders of the plot
itself (not the entire plot window, solely the coordinate system)
The size of the image I have (from GPS work)
Any ideas?
Secondly, I am confused of how to get coordinates into an owin plot. It
doesnt want to work.
Thirdly, is with spatstat only always one mark possible? Or can I
dif...
2015 Nov 05
4
[PATCH] D14227: Add a new attribute: norecurse
[Adding llvm-dev and re-stating the situation for llvm-dev's benefit]
*RFC: A new attribute, "norecurse".*
In some cases, it is possible to demote global variables to local
variables. This is possible when the global is only used in one function,
and that function is known not to recurse (because if the function
recurses, a local variable cannot be equivalent to a global as the
2018 Mar 19
1
Labelling a fortified GADM map plotted with ggplot and geom_map
I am having trouble getting data labels to display over the provinces in a GADM map of Canada.
Specifically, I need the variable "Number" from the data set "by_province", grouped by "region", to appear on the corresponding regions of the map.
The data set "by_province" looks like this:
long lat order hole piece region
2015 Nov 05
2
[PATCH] D14227: Add a new attribute: norecurse
Hi Aaron,
I think it must necessarily be exposed to users - clang must add it in
certain circumstances for example. I don't think this is particularly
different to many other attributes such as nocapture/nounwind, that are
exposed to users and can be set by users in exceptional circumstances but
are primarily inferred by the midend.
James
On Thu, 5 Nov 2015 at 16:03 Aaron Ballman <aaron
2006 Dec 28
2
Plot window - save as Postscript question
R 2.4.0 for Windows
The following plot appears as a squared window (as all r-plots)
Not all subtitles are visible, but all subtitle will appear, when
changing the aspect ratio of the plot window with the mouse to a wide
format.
But does not work when using the save as postscript menu item from the
plot window.
is there any solution for that?
opar <- par(mfrow = c(2,2), oma = c(0, 0, 1.1,
2008 Apr 29
0
Annoying bug (?) in package cairoDevice
I apologize for sending this twice, I didn't realize that gmail
helpfully defaulted to rich formatting.
For some reason, Cairo_png puts a box around a figure when you call
plot.new. It looks like box was called with black and a transparent
background. Example:
> library(cairoDevice)
> Cairo_png('cairo.png')
> plot.new()
> dev.off()
null device
1
The boarder is
2011 Jan 14
1
one sided t test
Dear R,
I am using this R version:R version 2.11.1 (2010-05-31)(Cran Mirror Berlin)
It seems to me, that R constructs a wrong confidence intervall if you try to get a one sided t-test.
If the true mean is 1 and my alternative hypothesis (H1) says that mu is smaller ("less")than zero the conf. intervall should reach +∞ and not -∞ if it is constructed for the H0 saying that mu is
2008 Aug 07
1
Syberia I Game on Wine 1.0
...ion support to SetDepthStencilSurface
fixme:msvcrt:msvcrt_get_flags :unknown flag w not supported
When I start the game in full-screen-mode, I see the game and I hear all. But the problem is, that it seems that my real screen resolution is to small for the full-screen resolution. That means the boarders of the game are outside of my real screen :(
Do you know how I can play the game?
Thank you all
Matt
2010 May 25
2
Hidden and Dangerous 2 and a strange bar
...www.bilderload.com)
if i try to run it in fullscreen, i always see my menu bar .....well isn't really fullscreen then...
[Image: http://www.bilderload.com/bild/41504/hd21LDUSX.png ] (http://www.bilderload.com)
does anybody know whats the problem is? How can i get rid of
my "menu-bar and boarders" problem [Embarassed] ?
My system:
Latest Gentoo
Nvidia 9800 gtx
wine 1.1.38