search for: plott

Displaying 20 results from an estimated 20 matches for "plott".

Did you mean: plot
2003 Jul 09
2
Packages, generics, S3 and S4
...e or environment in which generic functions are defined in packages. It seems as though they are defined (i.e. exist as objects) in frame 1, even when defined in a package. The following is a short example: setClass("track",representation(x="numeric",y="numeric")) plotTrack <- function(x,y,...) plot(x@x,x@y,xlab="",ylab="Value",...) setGeneric("plotT",def=function(x,y,...) standardGeneric("plotT")) setMethod("plotT",signature(x="track",y="missing"),plotTrack) This which works with my 'ex...
2016 Aug 25
2
"plot.ts" doesn't respect the value of "pch" (+ blocked from Bugzilla signups)
I've had a chance to read the source more thoroughly. The chain of events is as follows: 1. Local function `plotts()` is defined with argument `cex` that defaults to `par("cex")` 2. `...` is passed to `plotts()`. If "cex" is an element in `...`, inside `plotts()` the variable `cex` is assigned thereby (overriding the default arg). Importantly, this means that the element "cex"...
2004 Nov 19
0
NLME plottting and Confidence Intervals
All, I have been learning about mixed models and have been able to successfully use lme( ) and nlme( ) to fit some simple linear and 4PL logistic models. As a relative "newbie" I am at a loss as to how I can do the following: (1) Import a SAS dataset with DATE9. formatted time values and get them converted into a convenient time variable for use with the nlme package. In
2016 Aug 25
3
"plot.ts" doesn't respect the value of "pch" (+ blocked from Bugzilla signups)
I did a search on Bugzilla for "plot.ts" and didn't find anything on this issue. I tried to sign up for Bugzilla to report it, but my e-mail address didn't pass your "syntax checking" for a legal e-mail address. The bug is easily reproducible on my machine as follows: ## start # generate some data y <- arima.sim(list(), 150) # this will definitely dispatch to a
2016 Aug 26
0
"plot.ts" doesn't respect the value of "pch" (+ blocked from Bugzilla signups)
>>>>> Gregory Werbin <greg.werbin at libertymail.net> >>>>> on Thu, 25 Aug 2016 15:21:05 -0400 writes: > I've had a chance to read the source more thoroughly. The chain of > events is as follows: > 1. Local function `plotts()` is defined with argument `cex` that > defaults to `par("cex")` > 2. `...` is passed to `plotts()`. If "cex" is an element in `...`, > inside `plotts()` the variable `cex` is assigned thereby (overriding the > default arg). Importantly, this mea...
2003 Apr 10
6
How to plot several graphs in a single 2-D figure?
...the data points of "*" par(new=T); plot(data2); % data2 is the data points of "s" I found that the x and y labels are messed up, since different graphs use diffrent unit length on the x-axis and y-axis. So is there someway to avoid this problem? Or is there some other function plottting multiple plots in one x-y axis setting? Thanks for your point and help. Fred
2006 Oct 19
0
Rug-like density plots on margins of figure
...uot;mar") l = layout(matrix(c(2,0,1,3),2),c(1,4),c(4,1)) par(cex=1,bty="n") # first plot : main plot par(mar=omar * c(0,0,1,1)) # just top and right margins plot(x1, y1, axes=FALSE, main="Density Margins", xlab="", ylab="" ) # vars usepoly <- TRUE plott = ifelse(usepoly,"n","l") par(col="blue") # second plot : y axis density par(mar=omar * c(0,1,1,0)) par(xpd=NA) yd = density(y1,from=min(y1),to=max(y1)) ydd= data.frame(x=-yd$y, y=yd$x) plot(ydd, xaxt="n",xlim=c(0,min(ydd$x)),type= plott,bty="n",yl...
2009 Apr 26
4
Scatterplot of two groups side-by-side?
Dear all I'm realy new to R, so I hope you can help me, as I didn't find any solution in the common books. Since some days I'm trying to create the following plot: A scatterplott showning two different groups side-by-side with according regression lines. Both datasets only have the same five factors, so the scatters will form a kind of column at each factor. When I use "scatterplot" (package "car"), then I can plot two groups in the same graph by using t...
2002 Nov 19
5
plotting intersecting planes
...statistician, but surprisingly (to me anyhow) many mathematicians are also coming who have a MATLAB background. They are coming at the Workshop from a teaching perspective. They are considering using R to avoid licensing issues with MATLAB. One thing they were hoping me to show them was some 3D plotting. I have used persp and image and all. But what about, say, plottting intersecting planes? I can't seem to find a way of plotting in 3D, and then adding another plot. I guess I am after a 3D equivalent of lines or points; one plots the original plot and then adds to it. Ideally,...
2009 Feb 07
2
Time Series Graphics - "cannot plot more than 10 series"
Hi Experts, I would like to present time series data in meaningful way in building some graphics. I've tried: (1) plot(ts(mbaye3)) and (2) plot(ts(mbaye3), start=1990) But I always get this error-message: Fehler [error] in plotts(x = x, y = y, plot.type = plot.type, xy.labels = xy.labels, : cannot plot more than 10 series as "multiple" my data: mbaye3 year name 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 Denmark 0 0 0 0 0 0 1 0...
2016 Aug 25
0
"plot.ts" doesn't respect the value of "pch" (+ blocked from Bugzilla signups)
...for `plot.ts`, it seems like the `cex` argument is being "eaten" by a `...` somewhere without being properly passed to `plot.default`. '...' does not "eat" parameters, it passes them on. Looking at the very top of the body we see this in the definition of the internal `plotts` function: cex = par("cex"), lty = par("lty"), lwd = par("lwd"), axes = TRUE, frame.plot = axes, ann = par("ann"), cex.lab = par("cex.lab"), col.lab = par("col.lab"), font.lab = par("font.lab"),...
2008 Nov 21
1
cex.lab etc. ignored in plot.ts for multiple plots (PR#13315)
Full_Name: Yan Wong Version: 2.8.0 OS: Mac OS X 10.4 Submission from: (NULL) (78.149.183.231) When plotting multiple time series in a single plot, via plot.ts(plot.type="multiple"), the cex.lab, col.lab, and font.lab arguments are ignored > plot(ts(data.frame(a=1:10, b=1:10)), plot.type="single", cex.lab=0.5, col.lab="red") #tiny red axis labels > plot(ts(data.fra...
2008 Jun 29
3
Interactive plot
Hi all, I have created following codes : mat = cbind(c(0.000059710430,0.000023057380), c(0.000023057380, 0.00005971089)) set.seed = 1000 vary = runif(dim(mat)[1], 2000, 3000) calc = function(mat, vary) { result = vector(length = (length(vary)+1)) result[1] = sqrt(t(vary) %*% vary) for (i in 1 : length(vary)) { result[(i+1)] = sum(vary)*sum(vary*mat[,i])
2018 May 22
2
Plot qualitative y axis
Many thanks, My goal is to make a plott like attached but the Y axis starts in XIV and end at top in I. Generally for instance in excel X axis is categories but Y axis is numbers I want the contrary plotted in lines, your last help is near what I look but barplot is not needed. Hope you can help me thanks in advance. 2018-05-22 0:58 G...
2012 Feb 09
0
Help with TimeSeries
...50 153 148 150 145.0000 145.0000 143.0000 2007.5 165 180 190 168 163 163 168 175 180 160.0000 155.0000 150.0000 2008.0 152 163 185 163 158 175 175 178 168 168.0000 160.0000 160.0000 However that´s not what I want. Using fr=1 I get my data fine but can´t plot due to the error: plot(AP.ts) Error in plotts(x = x, y = y, plot.type = plot.type, xy.labels = xy.labels, : cannot plot more than 10 series as "multiple" AND > AP.hw <- HoltWinters(AP.ts,seasonal="mult") Error in decompose(ts(x[1L:wind], start = start(x), frequency = f), seasonal) : time series has no or less...
2018 May 23
0
Plot qualitative y axis
...colour = variable, group = variable)) + ????? geom_point() + geom_line() ============================================================= I feel very stupid. On Tuesday, May 22, 2018, 10:40:09 p.m. EDT, Pedro p?ramo <percentil101 at gmail.com> wrote: Many thanks, My goal is to make a plott like attached but the Y axis starts in XIV and end at top in I.? Generally for instance in excel X axis is categories but Y axis is numbers I want the contrary plotted in lines, your last help is near what I look but barplot is not needed. Hope you can help me thanks in advance. 2018-05-22 0:58 G...
2018 May 23
0
Plot qualitative y axis
...text(rev(ppdf[,3]),1:14,rev(ppdf[,3]),adj=0) Jim On Wed, May 23, 2018 at 7:44 AM, Pedro p?ramo <percentil101 at gmail.com> wrote: > > > 2018-05-22 23:44 GMT+02:00 Pedro p?ramo <percentil101 at gmail.com>: >> >> Many thanks, >> >> My goal is to make a plott like attached but the Y axis starts in XIV and >> end at top in I. Generally for instance in excel X axis is categories but Y >> axis is numbers I want the contrary plotted in lines, your last help is near >> what I look but barplot is not needed. >> >> Hope you can h...
2005 Mar 09
4
Lattice device page options-margins
...ce(device = "pdf",file = "Figure6.pdf",color = FALSE) I need to specify some blank space on the left-hand margins (the pages will be bound so we need about 0.5 inch)). I have tried a number of solutions but none seems to work (e.g. par.set). Can this be done when initiating the plotting device? Or is the some other way that does not require me to manually move everything over? Michael J. Bock, PhD. ARCADIS 24 Preble St. Suite 100 Portland, ME 04101 207.828.0046 fax 207.828.0062 [[alternative HTML version deleted]]
2007 Feb 27
2
ts; decompose; plot and title
Is there any way to give a "decent" title after I plot something generated by decompose? For example: # generate something with period 12 x <- rnorm(600) + sin(2 * pi * (1:600) / 12) # transform to a monthy time series y <- ts(x, frequency=12, start=c(1950,1)) # decompose z <- decompose(y) # plot plot(z) Now, the title is the ugly "Decomposition of additive time
2002 Apr 18
2
Changing tick mark labels
Hello, Can anyone help me out with this problem? After performing logistic regressions and testing the significance with likelihood ratios, I have plotted the results using "termplot". I am wondering, how to get the names of my variables to appear on the x-axis rather than ascending numbers? I have used: termplot(fm, se=T, axes=FALSE, col.se="black") axis(1, 1:4, LETTERS[1:4]) axis(2) box() to replace the numbers with letters...