Displaying 20 results from an estimated 90 matches similar to: "Add ablines"
2010 Nov 27
1
How to add multiple ablines
Hi folks
Run;
> ToothGrowth
> attach(ToothGrowth)
> toothgrowth=lm(len~dose)
adding abline:
> abline(toothgrowth)
I got it done adding single abline.
How to add more ablines on the same diagram?
I found following thread, applying "mapply" command;
Plotting multiple ablines
http://www.mail-archive.com/r-help@r-project.org/msg51543.html
mapply(abline,
(converge$kY +
2011 May 03
2
Controlling the extent of ablines on plot
Hi all,
I'm attempting to make a quite-specific plot where the axes cross at the
origin and with gridlines for guidance. I've been using ablines to create
the reference lines because I want a lot of control as to where they are
placed on the axis. This command works very well for such control.
However...
These ablines don't seem to work when I specify the origin as 0,0. They go
2020 Apr 07
1
Best way to verify LDAP connections to Samba in AD mode
I am running Samba in AD mode with 3 Samba DCs. I am trying to verify that I really am seeing all incoming connections in the log files to help trouble shooting. We work with Sernet who are AWESOME people, especially Bjorn, but I was wondering if there were any other ideas. Right now we have "log level = 1 auth_audit:3 auth_json_audit:3" set in our smb.conf. Are there any other ways
2003 Sep 10
2
C code for KalmnaLike
Hi
it is possible to see the C code for the KalmanLike and Kalmansmooth functions
with R?
Otherwise, without using R, how can I get the code?
Thank
arianna
2010 Sep 13
1
shade area between 'ablines'
Hi, want to shade the area between dotted lines:
x=c(1,5);y=c(1,5)
plot(y~x, type='n')
abline(v=c(2,3), lty=2)
sometnig simple needed. tried with polygon....
thx, robert
--
View this message in context: http://r.789695.n4.nabble.com/shade-area-between-ablines-tp2537352p2537352.html
Sent from the R help mailing list archive at Nabble.com.
2006 Apr 07
1
Multiple ablines
Thanks in advance,
I have searched and read the archives extensively and have been unable
to find a question (solution) exactly mimicking my problem. I have
created a scatterplot simulation of data through which I have drawn a
linear regression in this manner:
points(y~x, pch="*", col="black")
lm(y~x)
fm=lm(y~x)
abline(fm, col="red")
This works. The problem
2012 Jan 17
2
Separate ablines in lattice panels
Searched archives and found some old email threads on the topic. But mot exactly what I think I need. Suppose I have a datafile such as tmp.
tmp <- data.frame(var1 = c(rnorm(1000), rnorm(1000, 1, 1)), var2 = gl(2, 1000))
I'd like a plot similar to the one below, but with an abline of v=0 in the lower panel and v=1 in the upper panel. Code below creates two lines in each panel, not quite
2009 Apr 01
2
Plotting multiple ablines
I really want to do this:
abline(
a=tan(-kT*pi/180),
b=kY-tan(-kT*pi/180)*kX
)
where kX,kY and kT are vectors of equal length. But I can't do that
with abline unless I use a loop, and I haven't figured out the least
unelegant way of writing the loop yet. So is there a way to do this
without a loop?
Or if I am to resort to the loop, what's the best way of doing it
considering that I
2012 Apr 18
3
how to plot separate lm ablines on the same xyplot by group
Hi,
I am trying to use xyplot to plot the relationship between size and day
(y~x) by a food factor that has two levels, low and high. I have 3 reps per
factor/day. I want the plots from each food treatment on the same axiss,
so I used this code:
xyplot(Size ~ Day, groups = Food, data = louis.data.means,col=1,
pch=c(1,17),
panel=function(x,y,groups,...){
panel.superpose(x,y,groups,...)
2004 Aug 21
1
info an ARES/WAREZ
Hello,
I''m blocking/limiting succesfully all P2P activity on our corporate
network using linux/ipp2p/connmark.
That is, until now. For my colleagues have found a new p2p client to
wreck havoc on our DSL line: ARES/WAREZ It seems to be a gnuttela
clone, but different enouph for ipp2p not to identify it.
I played around a bit with tcpflow with no success of finding
2010 Feb 04
6
problems with SPC charts in R
Hi all,
I am using SPC techniques of plotting Xbar, R, S, P and C charts in R.For
this I am using qcc package in R and also using the following document for
reference.
http://www.stat.unipg.it/~luca/Rnews_2004-1-pag11-17.pdf
But while plotting S chart, R chartchart and also C chart I am getting
following errors.
I have plotted the Xbar chart successfully using following command
obj <-
2006 Aug 31
0
New package ffmanova for 50-50 MANOVA released
Version 0.1-0 of a new package `ffmanova' is now available on CRAN.
Comments, suggestions, etc. are welcome. Please use the email address
ffmanova (at) mevik.net.
The package implements 50-50 MANOVA (Langsrud, 2002) with p-value
adjustment based on rotation testing (Langsrud, 2005).
The 50-50 MANOVA method is a modified variant of classical MANOVA made
to handle several highly correlated
2006 Aug 31
0
New package ffmanova for 50-50 MANOVA released
Version 0.1-0 of a new package `ffmanova' is now available on CRAN.
Comments, suggestions, etc. are welcome. Please use the email address
ffmanova (at) mevik.net.
The package implements 50-50 MANOVA (Langsrud, 2002) with p-value
adjustment based on rotation testing (Langsrud, 2005).
The 50-50 MANOVA method is a modified variant of classical MANOVA made
to handle several highly correlated
2008 Sep 02
2
qcc help
Hi Gents,
I need to get the control limits from qcc function.
As follows:
qcc(MDI, type = "xbar.one")
Call:
qcc(data = MDI, type = "xbar.one")
xbar.one chart for MDI
Summary of group statistics:
Min. 1st Qu. Median Mean 3rd Qu. Max.
0.3266 0.4249 0.4371 0.4333 0.4451 0.4858
Group sample size: 1
Number of groups: 383
Center
2010 Feb 11
0
Regarding a error while plotting R chart using qcc package.
On 11 Feb 2010, at 06:53, Vikrant Shimpi wrote:
> Dear Luka ,
> I am using qcc package in R to plot SPC charts. BUt while plotting
> R chart I had a error. My question is it necessary while plotting
> R Chart the group sample size must be < 25 ?. Because when I took
> group sample size as 1000 it gave me error, till I took group sample
> size as 26, But as sooon as
2016 May 07
0
RV: Daily mail report for 2016-05-06lzq
Enviado desde mi smartphone BlackBerry Z10 4G Lte.
Mensaje original
De: admin at pr.copextel.com.cu
Enviado: sábado, 7 de mayo de 2016 12:30 a.m.
Para: admin at pr.copextel.com.cu
Asunto: Daily mail report for 2016-05-06
Grand Totals
------------
messages
409 received
4135 delivered
0 forwarded
10 deferred (114 deferrals)
14 bounced
90 rejected (2%)
0 reject warnings
0 held
0 discarded (0%)
2012 Jan 20
3
abline by groups
Hello,
I have 2 variables - x and y, that belong to separate groups.
I want to plot all the x and y together, but show separate abline for each
group. It can be done in ggplot2, but is there a simpler way to draw
ablines by group?
e.g.,
mydata <- data.frame(x = 1:20+rnorm(20, -3, 1), y = seq(1,20,by=1), group =
rep(letters[1:5],20))
plot(x,y,col=mydata$group) # need to get separate ablines
2004 Apr 27
1
helps on levelplot
I'm a new user of levelplot, and are not familiar with the terminology
very well. Is the bar alongside the levelplot indicating color or shade
call "colorkey"? I have to adjust the size of its label, but couldn't
make it so far. This is how I did:
levelplot(z~x*y, grid, at=seq(0,1,by=0.1),
colorkey=list(labels=list(cex=2)))
But I got error message "Error in
2008 Mar 28
1
background color in scatterplots
Dear R community, I have a scatterplot with multiple vertical ablines. I
wish to color each interval between two ablines in a different color...
Could you please indicate me how to do this efficiently?
Thank you!
Georg.
********************
Georg Ehret
Johns Hopkins
Baltimore
[[alternative HTML version deleted]]
2019 Feb 28
2
R cairo_pdf function does not respect plotting boundaries
Hello all,
When producing a plot in R using the cairo_pdf device, the resultant plot does not respect the plotting boundaries. Lines and shaded regions will spill over the lower x-axis and the right-side y-axis (sides 1 and 4). I would like to know if it is possible to fix this behaviour when using 'cairo_pdf' in R?
As an example, see the image at this web link: