similar to: X Axis labeling with class zoo

Displaying 20 results from an estimated 140 matches similar to: "X Axis labeling with class zoo"

2007 Dec 18
6
All anchored series from a vector?
>From: Johannes Graumann <johannes_graumann at web.de> >Date: 2007/12/18 Tue PM 04:40:37 CST >To: r-help at stat.math.ethz.ch >Subject: [R] All anchored series from a vector? lapply(1:length(myvector) function(.length) { c(myvector[1}:myvector[.length]) }) but test it because i didn't. >Hi all, > >What may be a smart, efficient way to get the following result:
2007 Oct 18
5
Secondary Y axis title
I have the following R code to create a plot with two y axes. I am essentially trying to plot a price series with a volume series on the same graph. (i.e. to compare price with volume). I can label the first y axis successfully, but the problem is in labeling the 2nd y-axis. Essentially, the label never appears. It seems as though there is not enough margin on the right hand side of
2010 Oct 19
4
Chron object in time series plot
Dear R users, I have the following script to create bins of specified time intervals bin_end=60/bin_size bin_size=bin_size*100 h=seq(070000,180000,by=10000) breaks=c() for (i in h) { for (j in 0:(bin_end-1)) { value=i+(bin_size)*j breaks=append(breaks,value) } } I would like to plot then using the time as x-axis. I tried the following prova=zoo(myseries,times(breaks)) but of
2004 Oct 04
2
Identifying time series
Hello, I am currently attempting to introduce R at my company and am trying to import time series data from a text file into R to graph. The format of the text file is in date, data (e.g., 20040929 3.361). My problem is that I do not know how to get R to recognize the first column as a business date series. Or at the very least, I am unable to find a function that will grap the second column
2009 Nov 13
2
AR(2) modelling
Hi useRs, I'm trying to fit a basic AR(2) model with the 'ar' function. And when I try to check the value of the coefficients, I could not find the same value as the 'ar' function. Here is my example: myserie <- c(212, 205, 210, 213, 217, 222, 216, 218, 220, 212, 215, 236) #plot(myserie, type="l") myserieminus0 <- tail(myserie, -2) myserieminus1 <-
2009 Nov 13
2
AR(2) modelling
Hi useRs, I'm trying to fit a basic AR(2) model with the 'ar' function. And when I try to check the value of the coefficients, I could not find the same value as the 'ar' function. Here is my example: myserie <- c(212, 205, 210, 213, 217, 222, 216, 218, 220, 212, 215, 236) #plot(myserie, type="l") myserieminus0 <- tail(myserie, -2) myserieminus1 <-
2009 Nov 02
1
AR Simulation with non-normal innovations - Correct
Dear Users, I would like to simulate an AR(1) (y_t=ct1+y_t-1+e_t) model in R where the innovations are supposed to follow a t-GARCH(1,1) proccess. By t-GARCH I want to mean that: e_t=n_t*sqrt(h_t) and h_t=ct2+a*(e_t)^2+b*h_t-1. where n_t is a random variable with t-Student distribution. If someone could give some guidelines, I can going developing the model. I did it in matlab, but the loops
2008 Jul 23
1
Time series reliability questions
Hello all, I have been using R's time series capabilities to perform analysis for quite some time now and I am having some questions regarding its reliability. In several cases I have had substantial disagreement between R and other packages (such as gretl and the commercial EViews package). I have just encountered another problem and thought I'd post it to the list. In this case,
2014 Feb 20
2
Ghost DNS records
I have set up a samba 4.1.3 server and everything is working as it should be, but checking the dns I have notice that sometimes there are some extrange record that come and go, check this images to see what I am talking about http://imageshack.com/a/img580/4350/si8p.png http://imageshack.com/a/img27/3659/wedn.png http://imageshack.com/a/img577/4876/l0kl.png
2011 Mar 27
0
Help labeling Panels
Hi, I'm new. I tried to search out this answer but I suspect I was using the wrong terms, or simply not understanding some of the answers. Anyway here is my question: I want to have a 2x2 panel figure with 4 line graphs all in the same scale. Actually I have that. The thing I seem to be lacking is a way to Label each panel with a letter. I want it to look something like this:
2011 Mar 24
1
Help needed with plot axis labeling
I have looked at many examples and tried many different combinations of doing this, but with no luck. I have something like this: plot(1:10, xaxt = "n") axis(1, xaxp=c(2, 9, 7)) axis(4) but, what I need is to have different labels for axis-4 than those for axis-2 (the vertical axes) ? that is, rather than 2,4,6,8,10 for both the left and right vertical axes, I need A,B,C,D,E on the
2010 Sep 15
2
labeling outliers with subject numberss
How can I get the outlier in this boxplot of "Score" to be represented by the corresponding value in "SubNo"? score=c(6,6,7,14,5,7,6,8) SubNo=1:8 mydata=data.frame(SubNo, score) boxplot(mydata$score) Thanks! Kevin [[alternative HTML version deleted]]
2002 Jun 01
1
x labeling in an interaction.plot
Dear R-Users, Is it possible to omit the automatic x labeling in an interaction.plot? xaxt="n" doesn't seem to work. Also I tried to set col.axis="white" but it changes only y annotation color. Thanks, Ant?nio Olinto -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read
2013 Mar 13
1
expression exponent labeling
Hi all, I want to label an axis with exponents, but can't get it done with expression. Any hints would be very welcome! # simulated data, somewhat similarly distributed to my real data: set.seed(12); d <- rbeta(1e6, 0.2,2)*150 ; d <- d[d>1e-8] hist( d? , breaks=100) # now on a logarithmically scaled axis: hist(log10(d), breaks=100, xaxt="n") abline(v=
2006 Jun 30
0
[PATCH][ACM][UPDATE2] python tools and support for resource labeling
Same functionality as the previous patches in this series. I have updated the error handling to correct the problems discovered by Ewan. This patch successfully completes the xm-test suite on my dev machine. In addition, we have tested out the affected commands by hand to ensure that error handling is being done properly. Hopefully this one will not create any more problems.
2012 Dec 02
0
Labeling a range of bars in barplot?
Marc Schwartz (via MN) wrote: > On Tue, 2005-12-13 at 10:53 +0000, Dan Bolser wrote: > >>Hi, I am plotting a distribution of (ordered) values as a barplot. I >>would like to label groups of bars together to highlight aspects of the >>distribution. The label for the group should be the range of values in >>those bars. >> >>As this is hard to
2006 Oct 31
0
6306370 prtfru output does not match FRU etching or external labeling
Author: venki Repository: /hg/zfs-crypto/gate Revision: da7abc07c2c46c9d8bc78c1ca90a9ecb98207c6b Log message: 6306370 prtfru output does not match FRU etching or external labeling 6353030 Inconsistency in DIMM labels in ereport, prtfru, cpumem DE on Chicago Files: update: usr/src/cmd/picl/plugins/sun4u/chicago/frutree/system-board.info
2008 Jun 19
0
White-labeling - config.plugins-fu fails in Rails 2.1
What I''m trying to do is to enumerate all available plugins and then exclude specific plugins. This allows me to white-label my site and load the necessary brand via plugin specified in the environment at run-time. If there''s a better way to accomplish this in Rails 2.1, I''m all ears. The following approach in config/environment.rb for enumerating all the plugins to
1999 Dec 06
0
Factor labeling in a tree.plot
Hi all. I have the problem, that the labels from a factor variable in a tree object, (more exact, the node - labels) is labeled in a plot with letters a,b,c... instead of the numerical levels. when I run >labels(tree.object) It gives me the correct labels (the problem concerns 'landuse': [1] "root" "landuse:1,2,3,4,5,6,7,8,9,10" [3]
2008 Jun 13
0
[PATCH] [xend] [ACM] Enable labeling of resources as inaccessible
This patch enables the labeling of (disk-type) resources with the special label __INACCESSIBLE__ to prevent unlabeled domains from accessing them. Signed-off-by: Stefan Berger <stefanb@us.ibm.com> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel