Displaying 20 results from an estimated 200 matches similar to: "X11 and linux and plotting and the vertical axis"
2008 Feb 17
2
filled.contour with log axis
Dear all,
I would like to generate a filled.contour plot with log x and y axis,
however using:
filled.contour(as.line,log="xy")
results in a warning message.
Does anybody knos what to do?
Thanks
Thomas
2007 Nov 04
2
Fw: Creating a barplot--advice needed
Subject: Creating a barplot--advice needed
> Advice needed: I am preparing a computer program to do a barchart. Advice
> needed: Should I learn the lattice package, or try to? As a
> non-statistician, much of the terminology is unfamiliar to me. "grouping
> variable," "object of class trellis," etc. Or, is there a more easily
> learned way to do it? It is a
2010 Jul 25
1
Using Vertical IP2007 phones with Asterisk?
I recently inherited a Vertical Xcelerator IP system with IP2007 phones. I would like to use the phones with an Asterisk system instead, but there doesn't seem to be much information on it on Google. Is it even possible? These phones claim that they are SIP phones.
Thanks!
Kevin
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2012 Oct 19
0
Lattice bwplot: Adding mean with panel.points fails in vertical arrangement
Dear collegues,
given a structure of data like this:
###### Data ###########################
set.seed(100)
a <- rnorm(60,10,3)
s <- c(rep("A",20),rep("B",20),rep("C",20))
p <- c(rep("d",6),rep("e",6),rep("f",6),rep("g",6),rep("h",6))
df <- data.frame(a,s,p)
i would like to draw a lattice bwplot in
2011 Jul 13
2
Adding vertical space before and after Sweave chunk
Ein eingebundener Text mit undefiniertem Zeichensatz wurde abgetrennt.
Name: nicht verf?gbar
URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20110714/db3a6d2c/attachment.pl>
2008 Apr 18
1
Vertical bars with barchart
Hallo,
What is the right way to get vertical bars in
a barchart?
For instance
barchart(VADeaths,
key=simpleKey(colnames(VADeaths),points=F,rectangles=T))
gives what I need,
only I would like the bars to be vertical.
But
barchart(VADeaths,horizontal=F,
key=simpleKey(colnames(VADeaths),points=F,rectangles=T))
does not give what I need,
and I do not understand how to change the
2010 Nov 09
1
ggplot2: facet_grid with different vertical lines on each facet
Hello,
I am plotting many histograms together using facet_grid in ggplot2. However,
I want to then add a vertical line to each histogram, or facet, each of
which vertical lines are at different x-values.
The following example adds all vertical lines to each facet:
ggplot(data,aes(values)) + geom_histogram() + facet_grid(.~variable) +
geom_vline(xintercept=c(5,10,15))
How can I add a vertical
2009 Jun 24
2
vertical label on x-axis
Hi,
have anybody a hint how it's possible plot the labels in the x-axis
vertical to get more space.
dotplot( value ~
abbreviate(attribute,minlength=3),data=tabstat10,ylim=c(0,1),col="blue",ylab="Value",type="p",par.settings=my.theme)
Many thanks,
Christian
2000 Dec 20
1
high-density vertical lines
Hello.
> x_c(1,2,5,7)
> plot(x,type="h",lwd=10)
produces for me a plot where the tops of the high-density lines are
rounded. Is there a way to get the high-density lines so that their
tops are flat?
Thanks,
Michael
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send
1998 Feb 12
0
R-beta: Vertical segment.....
Hello,
I need to draw a vertical line on my plot, the uncertainty segment
(which is
a vertical segment on every point of my plot so I can have an idea
about
the probability that a point is misclassified.... clustering
problem.....)
I remember I have done it a long time ago in Splus using a function
called
"segment" to which we give the extrem point of the segment , I didn't
find
2016 Apr 18
0
Add a vertical arrow to a time series graph using ggplot and xts
Hi,
I am trying to add a vertical arrow (from top to bottom or from bottom
to up) to a time series plot using ggplot2 and xts. It seems that the
vertical line command "geom_vline" does not work for this purpose (Correct
me if I am wrong). I try the command "geom_segment" as follows, but I got
an error message at the last line "Error: Invalid input: date_trans works
2016 Apr 20
0
Add a vertical arrow to a time series graph using ggplot and xts
Please see updates to df2 assignment as shown below.
library(xts) # primary
#library(tseries) # Unit root tests
library(ggplot2)
library(vars)
library(grid)
dt_xts<-xts(x = 1:10, order.by = seq(as.Date("2016-01-01"),
as.Date("2016-01-10"), by = "1 day"))
colnames(dt_xts)<-"gdp"
xmin<-min(index(dt_xts))
2017 Oct 22
2
Add a vertical line and some values on a plot
Dear R-experts,
Here below is my code,
I would like to add a vertical line on my plot, showing the median and I would like to place some values on this graph as well, i.e. 4.3 and -8.4. How can I do ?
Many thanks for your reply.
A=c(1,2.3,4,3.5,4.3,2.5,6.3,-0.1,-1.5,3.7,-2.3,-3.5,5.4,3.2, -10.5,-8.4,-9.4)
d <- density(A)
plot(d)
median(A)
2017 Oct 22
0
Add a vertical line and some values on a plot
Hello,
After the plot just do
abline(v = median(A))
As for how to plot points, see, well, ?points().
Hope this helps,
Rui Barradas
Em 22-10-2017 16:33, varin sacha via R-help escreveu:
> Dear R-experts,
>
> Here below is my code,
> I would like to add a vertical line on my plot, showing the median and I would like to place some values on this graph as well, i.e. 4.3 and -8.4. How
2009 May 28
1
[PATCH server] Change default flexchart view and increase vertical dimension of flexchart area.
---
src/app/views/graph/history_graphs.rhtml | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/app/views/graph/history_graphs.rhtml b/src/app/views/graph/history_graphs.rhtml
index 9488367..7a7e1e1 100644
--- a/src/app/views/graph/history_graphs.rhtml
+++ b/src/app/views/graph/history_graphs.rhtml
@@ -7,10 +7,10 @@ $('#flex_history_chart').flash(
{
2007 Mar 25
2
[PATCH] Vertical/Horizontal maximization in gtk-window-decorator
Here a patch to enable Vertical/Horizontal maximization in
gtk-window-decorator.
Cedric
-------------- next part --------------
A non-text attachment was scrubbed...
Name: gtk-window-decorator_HorzVertMaximize.patch
Type: text/x-diff
Size: 1418 bytes
Desc: not available
Url : http://lists.freedesktop.org/archives/compiz/attachments/20070325/22d15360/gtk-window-decorator_HorzVertMaximize.bin
2009 Aug 05
0
non-1 vertical virtual size
For Expo purposes (among others), I like my vertical virtual size to be
more than 1 (typically 2).
But I bump into several problems with that:
- the panel's "worspace switcher applet" doesn't seem to understand it
right:
- if I tell it to "show all workspaces in 1 row", then my
6 workspaces (3x2) get displayed correctly, but clicking on them
only lets me
2004 May 16
1
Vertical applications?
Has anyone created any vertical applications, e.g. real estate, for
Asterisk?
I'm trying to market * in my area (Seattle) and would like to offer vertical
apps to my customers. These apps will help me compete with the big guys like
Cisco, Avaya, etc.
If you have an app, I'd be interested in discussing how my company
(www.rainiernetworks.com) might license it from you. The app does not
2004 Sep 10
0
Proposal regarding the "*80" vertical service code
I can't seem to get *80 to do its thing on a Zap channel. Looks like
*8 is being seen by asterisk first, and *80 is basically inaccessible.
What *80 is intended to do, by the documentation on the wiki and by
inspection of the source code, is add the last callerid to the
blacklist.
Looking at the source, I see the same behavior coded in chan_zap,
chan_mgcp, and chan_skinny. While *8
2005 Sep 20
1
Asterisk vertical service activation codes
Anybody know anything about using "Asterisk vertical service
activation codes" as described in the wiki:
http://www.voip-info.org/tiki-index.php?page=Asterisk+vertical+service+activation+codes
Specifically I'm interested in *0 that (apparently) flashes an
external trunk on bridged channel. Nothing seems to happen when I use
it though. Do I need to do something special in