search for: arrows

Displaying 20 results from an estimated 1255 matches for "arrows".

Did you mean: arrow
2011 Jun 09
0
Help creating a scatterplot with errorbars using gplot
...d deviations (stdev) are: 0.001154701 0.003000000 0.002081666 0.009865766 0.015716234 0.040253364 0.017691806 0.013868429 0.007234178 I use the command: plotCI(OD600, cellconc, uiw=stdev) And I receive a graph that looks correct but without any error bars. I also receive these warnings: 1: In arrows(...) : zero-length arrow is of indeterminate angle and so skipped 2: In arrows(...) : zero-length arrow is of indeterminate angle and so skipped 3: In arrows(...) : zero-length arrow is of indeterminate angle and so skipped 4: In arrows(...) : zero-length arrow is of indeterminate angle and so skip...
2008 Jul 09
1
outlining symbol in legend with blackline
...303, pch=19, lwd=4) points(18, 7926, pch=19, lwd=4) points(22, 7278, pch=19, lwd=4) points(26, 6472, pch=19, lwd=4) points(30, 6719, pch=19, lwd=4) points(34, 6123, pch=19, lwd=4) points(38, 6280, pch=19, lwd=4) points(42, 6334, pch=19, lwd=4) points(46, 7707, pch=19, lwd=4) #max thurmond flow bar Arrows(2.5, 8229, 2.5, 25580, size=0, sh.lwd=4) Arrows(6, 9555, 6, 28571, size=0, sh.lwd=4) Arrows(10, 10547, 10, 23153, size=0, sh.lwd=4) Arrows(14, 10182, 14, 37591, size=0, sh.lwd=4) Arrows(18, 7847, 18, 22521, size=0, sh.lwd=4) Arrows(22, 7206, 22, 18384, size=0, sh.lwd=4) Arrows(26, 6472, 26, 15489,...
2016 Apr 12
2
Adding Two-Headed Arrow in map legend
...e. Thanks again! Sincerely, Milu On Tue, Apr 12, 2016 at 1:15 PM, Jim Lemon <drjimlemon at gmail.com> wrote: > Hi Milu, > There is a two-headed arrow on the image you sent, and it seems to be > where you specified. Did you want it beneath the map, as: > > par(xpd=TRUE) > arrows(-22,54.75,-22,74,code=3) > par(xpd=FALSE) > > Jim > > On Tue, Apr 12, 2016 at 7:58 PM, Miluji Sb <milujisb at gmail.com> wrote: > > Dear Jim, > > > > Thanks again! I do want the arrows at the bottom (beneath the map). This > is > > what I am doing: &g...
2011 Nov 14
2
arrow egdes and lty
Dear R developers, I want to draw an arrow in a figure with lty=2. The lty argument also affects the edge of the arrow, which is unfortunate. Feature or bug? Is there some way to draw an arrow with intact edge, still with lty=2? Example code: plot(1:10) arrows(4, 5, 6, 7, lty=2) Best wishes, Matthias --
2009 Jan 19
2
plotting arrows with different colors and varying head size
Dear list, I would like to plot arrows with different colors according to arrow length, and also (if possible) with head size proportional to arrow length. The idea is to make a quiver-like plot of matlab with wind speed data. So far, I´ve been able to use different colors, but I need to find a more efficient way to recode arrow length...
2016 Apr 13
0
Adding Two-Headed Arrow in map legend
Hi Milu, My fault here. As I don't have the data to make the map and try out my suggestions I mixed up the x and y coordinates. Try this: par(xpd=TRUE) arrows(-19.75966,53,33.60000,53,code=3) par(xpd=FALSE) Jim On Tue, Apr 12, 2016 at 10:11 PM, Miluji Sb <milujisb at gmail.com> wrote: > Hello Jim, > > Thanks again. I am getting the two-headed arrow but I cannot seem to get the > coordinates right for the arrow to appear beneath the ma...
2016 Apr 12
2
Adding Two-Headed Arrow in map legend
Dear Jim, Thanks again! I do want the arrows at the bottom (beneath the map). This is what I am doing: # Draw the map eps_europe <- mapCountryData(n, nameColumnToPlot="eps_score", mapTitle="EPS Score - Europe",colourPalette=colourPalette, catMethod="fixedWidth", missingCountryCol = "white", mapRegio...
2001 Aug 02
1
arrows()/log scale/clipping (?) (PR#1039)
arrows() seems to hang when either x or y scale of the plot is logarithmic and the arrows requested go beyond the plot (by more than a certain amount). I didn't go into C code to find it, but here's a function that exercises the bug a bit ... arrow.bug2 <- function(y0=1,y1=10,log="y&quot...
2009 Apr 30
3
Curved arrows
I'm trying to draw an arrow with a curved shaft on the graph as a straight one looks messy on a detailed graph. I've looked in arrows but it doesn't seem to give an option. larrows doesn't look much more promising. I had a look in the archive and couldn't find anything. Any thoughts? Thanks Paul -- View this message in context: http://www.nabble.com/Curved-arrows-tp23312316p23312316.html Sent from the R help mai...
2012 Feb 10
4
function arrows.circular not working
I have started using the circular package but it is not recognizing the function arrows.circular. I attempted to use the example provided in the circular manual. Here is the example code using the circular package: plot(rvonmises(10, circular(0), kappa=1)) arrows.circular(rvonmises(10, circular(0), kappa=1)) arrows.circular(rvonmises(10, circular(0), kappa=1), y=runif(10), co...
2009 May 15
3
drawing arrows
Hi, I would like to draw arrows in a classic 2D plot. Which package should I use? is there R base functions that do job? On google, I could not find any useful discussion about this topic, except a link to the function 'grid.arrows' of the grid package. My problem is I would like to draw arrows at the edge of circles dr...
2016 Apr 12
0
Adding Two-Headed Arrow in map legend
Hi Milu, There is a two-headed arrow on the image you sent, and it seems to be where you specified. Did you want it beneath the map, as: par(xpd=TRUE) arrows(-22,54.75,-22,74,code=3) par(xpd=FALSE) Jim On Tue, Apr 12, 2016 at 7:58 PM, Miluji Sb <milujisb at gmail.com> wrote: > Dear Jim, > > Thanks again! I do want the arrows at the bottom (beneath the map). This is > what I am doing: > > # Draw the map > eps_europe <- map...
2010 Jul 27
3
Add an arrow to a plot
...plot an x,y plot something like an scatter plot. I always have the same doubt, were is the last point of my file? Imagine it is a time series so I want the last point to indicate with an arrow (but athomatically if posible). Someone knows if it is posible? Could it be posible to add additional arrows (with a small square with text?) I hope you can comprehead me? I suppose you will say: An arrow? Which width?size? I first need to see how it looks and if it is posible. Many thanks in advance¡¡¡ [[alternative HTML version deleted]]
2010 Dec 18
1
Can I make my colnames bold?
...as=1, axes=FALSE,cex.lab=1.6) axis(2, at=c("0", "10", "20", "30", "40", "50", "60", "70"), lwd=2, font=1.7, pos=-.025,cex.axis=2, las=2) mtext("Relative Intensity", side=2, line=6, adj=.525, cex=2, font=1) arrows(1.5, 25.2995, 1.5, 36.7875, code=2, angle=90, lwd=2, length=.1) arrows(2.5, 36.577, 2.5, 48.065, code=2, angle=90, lwd=2, length=.1) arrows(3.5, 38.124, 3.5, 49.612, code=2, angle=90, lwd=2, length=.1) arrows(5.5, 0.7625, 5.5,24.2575, code=2, angle=90, lwd=2, length=.1) arrows(6.5, 39.7085, 6.5,63...
2011 Dec 07
2
How to scale arrows to approximately fill a plot region?
In a variety of graphic applications, I plot some data, together with arrows representing variables or linear transformations of variables as vectors in the same space, as in a biplot. In my applications, the scale of the arrows is arbitrary -- all that matters is relative length. I'd like to blow them up or shrink them to fit the available space in the plot. The or...
2016 Apr 11
0
Adding Two-Headed Arrow in map legend
Hi Milu, I just realized that by "the bottom of the map" you may mean "beneath the map", in which case you should use: par(xpd=TRUE) arrows(...) par(xpd=FALSE) Jim On Mon, Apr 11, 2016 at 11:50 PM, Miluji Sb <milujisb at gmail.com> wrote: > Dear David, > > Thank you very much for your replies! I didn't know about par('usr'). > > I get different coordinates though: > > [1] -19.75966 54.75966 33...
2010 Oct 06
2
Pointing to a specific place on the x-axis with an arrow
Hi all, I am trying to do something simple, but which is deviling me. I want to add an up-arrow to the x-axis, pointing to a specific location on the axis. I want the arrow to be as large as possible. Here is where I'm at with my code: #this part if from the ?plot example: require(stats) plot(cars) lines(lowess(cars)) #I am trying to use mtext to add the arrow... but I don't know how
2014 Sep 11
2
Arrow key feature request
Since keystrokes were brought up, this seems like a reasonable time to make the following seemingly simple-to-implement feature request: Navigating a multi-level menu structure seems to require use of UP/DOWN/ENTER/ESC. It would be easier to quickly search/navigate if it could be done with fingers stationed on the arrow keys so that the eyes can stay focused on the screen. Current
2000 Sep 06
3
funny arrows
The result of > plot(c(-1,1),c(-1,1),type="n") > arrows(0,0,1,1) > arrows(0,0,0,0) is not what I expected. The first arrow is drawn correctly. The second does not collapse to a point but goes from (0,0) off to (-infinity,infinity). I guess something is divided by zero in the internal function. Chris. ===============================================...
2006 Oct 20
1
arrows and points for error bars
Hello everyone, I have successfully made an error bar graph using the points() command with the arrows() command to maually add on the standard errors. However, one slightly annoying feature of using this method is that the points dont line up exactly with the arrows (if you look carefully the points are never perfectly in the centre of the arrow), even when you move the arrows around in an attempt...