search for: quater

Displaying 11 results from an estimated 11 matches for "quater".

Did you mean: quarter
2003 Apr 30
3
How to put 2 or more graphics in the same page ?
Hi, I have a naive question... I have produced about 60 graphics and want to put them in one postscipt file , possibly 4 graphics on each page. I can put all of them in the same file (that's ok), but I can't find the way to put 2 or more (precisely 4, in my case) graphics on the same page (each graphics is about 6 inches (width) X 4 inches (height)). Any help would be very much
2008 Jan 25
3
Help
Hi, I got command to execute R code from Mark. but it was showing error.. Error in library(hopach) : there is no package called 'hopach' Does it mean this library hopach is not installed. But I have installed complete Bioconductor package. I am confused. can you help me in this thanks Regards, -- Prateek Singh Final year Bioinformatics(BTech) Vellore Institute Of Technology
2006 Jan 25
2
Question about Aggregate
hello, Suppose you a monthly series you want to aggregate at a quaterly frequency with the start and the end of your series in the middle of the quarter. For example 2001M2 2001M3 2001M4 2001M5 2001M6 2001M7 12 13 12 14 16 15 how can you get something like : 2001Q1 2001Q2 200Q3 NA 14 NA or 2001Q1 2001Q2 200Q3 1...
2008 Jul 04
2
Interface between fractal geometry and statistics
...related statistics, such as the Hurst exponent or fractal dimension? Or perhaps which support obvious tasks such as taking samples from a dataset at different levels of granularity (such as sampling spatial data at cm, m, km spatial resolution, or sampling daily time series at weekly, monthly, quaterly or annual resolution)? Thanks Ted
2001 May 10
3
about strsplit
Hello, I want to split a string including a "+" but it seems there is no effect because of this special character. Just to explain, I convert frequencies to midi notes (external program) but I don't want to keep information about quater-tone! > s <- c("Fd4+1/4") (i't a note!) > strsplit(s,"+") [[1]] [1] "F" "d" "4" "+" "1" "/" "4" but > strsplit(s,"d") [[1]] [1] "F" "4+1/4" So the problem i...
2013 Nov 13
2
Implementing Samba 4 in multi site environment
...ifferent network. let say head quarters office network is 172.16.0.0/24and site office network are 172.16.1.0/24 until 172.16.99.20.0/24. my plan is i will install dc in head quarter office and i will install additional dc in every site office that will replicate the directory only with the head quater office dc. so my question are 1. is my plan possible to be implemented? 2. how many bandwidth do i need in every site (head quarters office and each site office) to run my plan? 3. is anyone here ever implement the same scheme with my plan, pliz in need some advice to implement it .. -- Thx &a...
2006 May 01
4
efficiency in merging two data frames
I have two data sets about lots of companies' stock and fiscal data. One is monthly data with about 144,000 lines, and the other is quaterly with about 56,000. Each data set takes different company code. I need to merge these two together. I read both ask cvs. And the other file with corresponding firm code. Now I have three data sets. return$PERMNO, account$GVKEY. id is the data frames of the corresponding relation and has both...
2008 Sep 18
2
graphing netCDF files
...return 287 # plot first 91 days (3 months of the year) for(i in 1:91) { !is.na( image(UTMx, UTMy, z = wat.data2001q1[,,i], col=brewer.pal(8, "YlGnBu"), axes=T, pty="s", ylab="UTM Northing", xlab="UTM Easting", main = "First Quater 2001") ) } As I indicated above the map is displayed on the graphics device. However the orientation is distorted pulling the x axis to wide and the y axis too tall. How can I set the graphics device to know the orientation and scaling (if these are the correct terms) in order to d...
2006 Oct 12
3
ts vs zoo
> Hello, > > I have lots of data in zoo format and would like to do some time > series analysis. (using library(zoo), library(ts) ) > > My data is usually from one year, and I try for example stl() to find > some seasonalities or trends. > > I have now accepted, that I might have to convert my series into ts() > but still I am not able to execute the comand since
2013 Dec 10
0
Re: Developer Dashboards for Xen Project sub-projects (need input)
...> with me and the vendor getting this off the ground > I like the idea of getting an idea of ''we are getting less and less > commits in this area'' as a way to figure out what needs attention > (or perhaps no need). > > But not every week, not every month either - quaterly is nice enough. > Or maybe once a year (say at Xen Summit?). But that should be possible > already right? Or is it a major pain to create those nice graphs? It is a major pain. > What is the overall goal? > > From my PoV my feeling is that: > a). I need to hire more folks &g...
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.