search for: disaggregated

Displaying 20 results from an estimated 46 matches for "disaggregated".

Did you mean: disaggregate
2011 Aug 15
2
temporal disaggregation
Dear R-users, I have an anual info of gross product and I would like to disaggregate to trimestral data. Can I import a matlab library of Quilis? ( http://www.mathworks.com/matlabcentral/fileexchange/24438-temporal-disaggregation-library ) Thanks, Sebasti?n.
2006 Oct 22
1
disaggregating table
Hi all, This should be easy, but I can't seem to figure it out. I have a table like this named newtable a1 a2 a3 a4 Cnts Score 1 1 0 0 4 3.28 1 0 1 1 2 2.63 I want the following: a1 a2 a3 a4 Cnts Score 1 1 0 0 4 3.28 1 1 0 0 4 3.28 1 1 0 0 4 3.28 1 1 0 0
2009 Oct 30
1
Time series temporal disaggregation
  Hi, This is a newbie question. I would to be able to convert annual time series of flow data into quarterly data. I wonder if there is any existing R-function which permits to do it? In what package ?   I the archive, i found that some poeple speak about "tempDis" package for performing time series temporal disaggregation, but when I try to download it I can not found it in the list
2008 May 22
1
disaggregate frequency table into flat file
i appologise for the trivialness of this post - but i've been searching the forum wothout luck - probably simply because it's late and my brain is starting to go.. i have a frequency table as a matrix: orig<-matrix(c(40,5,30,25), c(2,2)) orig [,1] [,2] [1,] 40 30 [2,] 5 25 i basically need a random sample say 10 from 100: [,1] [,2] [1,] 5 2 [2,] 0 3 i
2005 Nov 15
0
Temporal disaggregation using interpolation splines
Hi, this is a newbie question. Would it be able to convert e.g. annual time series of flow data (or an index series) into quarterly data using interpolation splines by means of an existing R-function? The problem is, that the average value of the computed quarterly values must be the annual value, i.e. the spline should cross the annual values (in a stairs-line plot) in the middle of every annual
2003 Jun 13
5
Applications, dialplan not loading
I've built the latest CVS of asterisk -- not the zaptel or libpri directories, just the asterisk directory. asterisk installs successfully, but there are severe problems. I built this system in the past and ran it, but now building it again fails. This is the CVS as of this morning, 2003-06-13, but I had problems on 06-11/12 as well. After make; make install; make samples; make config, I
2003 Jul 01
2
Today's Message from linphone; update on Khpone and SJPhone and X-Lite
Today's "frustrated programmer" award goes to Linphone, which has the following debug output: > (linphone:28655): LinphoneCore-WARNING **: this fucking remote sip phone did not answered properly to my sdp offer! I get this message when I connect to linphone using a softphone, or when I try to use linphone to connect to asterisk and listen to an announcement. I suspect that
2003 Jun 15
5
.gsm files
Hi guys, Being a true Linux geek, I've never been too much into sounds or sound files other than a few .mp3 songs I got. My question is pretty straightforward and simple. I see that the music format of choice for asterisk is .gsm. What can I use to listen to files in .gsm format and what is the most effective way of recording files into .gsm format? The last part of the question is
2003 Jun 24
2
Asterisk ALSA module not working
Asterisk doesn't work with the latest CVS of ALSA (2003-06-24) . The module chan_alsa.so won't load even if the oss module, chan_oss.so, isn't loaded. There are no error messages. I've been chasing ALSA/Asterisk/client problems in one form or another for some time now. In previous versions of Asterisk and ALSA -- i.e., last week -- I could load either chan_oss.so or
2017 Jul 05
0
expand gridded matrix to higher resolution
You probably ought to be using the raster package. See the CRAN Spatial Task View. -- Sent from my phone. Please excuse my brevity. On July 5, 2017 12:20:28 AM PDT, "Anthoni, Peter (IMK)" <peter.anthoni at kit.edu> wrote: >Hi all, >(if me email goes out as html, than my email client don't do as told, >and I apologies already.) > >We need to downscale climate
2003 Jun 30
3
Connections, but no voice paths except by console
I have a software-only PBX set up. I can register various softphones and they will call each other -- but I've never succeeded in getting any voice routed from any of the softphones. Only the console will transmit audio. I am writing to ask if I have missed some obvious step in configuring the system. Conditions: (1) Softphones running on the same machine as the PBX: Only Kphone seems
2012 Jun 16
3
Temporal disaggregation
Dear R users, I have a panel data set (in MS excel) on prices across countries and time country time price 1 "23/11/08" 2 1 "28/12/08" 3 1 "25/01/09" 4 1 "22/02/09" 5 1 "29/03/09" 6 1 "26/04/09" 32 1
2018 May 09
3
Seasonal weekly average
...this to plot a chart with 52 points for the average based on the last five years; another line will then plot the current year, enabling a comparison of current weekly counts against a five year average for the same week. I would like some advice on how this can be done in 'R' . My data is disaggregated data - with dates in the format in 01/01/2018. Thanks Shakeel Suleman ************************************************************************** The information contained in the EMail and any attachments is confidential and intended solely and for the attention and use of the named addressee(s...
2017 Jul 05
4
expand gridded matrix to higher resolution
Hi all, (if me email goes out as html, than my email client don't do as told, and I apologies already.) We need to downscale climate data and therefore first need to expand the climate from 0.5deg to the higher resolution 10min, before we can add high resolution deviations. We basically need to have the original data at each gridcell replicated into 3x3 gridcells. A simple for loop can do
2003 Jul 14
1
VXML?
Anyone know of anybody doing VXML with Asterisk and/or Linux? Tia Kevin
2013 Jan 12
1
bind tables
Hi Matteo, You could do this: dat1<-read.table(text=" year? h? len fre 1994? 5 10.5? 2 1994? 5 14.0? 2 1994? 5 11.5? 1 1994? 9 13.0? 3 1994? 9 11.5? 1 1994? 9 13.5? 5 ",sep="",header=TRUE) res<-do.call(rbind,lapply(split(dat1,dat1$fre),function(x) x[rep(row.names(x),x$fre),1:3])) row.names(res)<-1:nrow(res) ?res #?? year h? len #1? 1994 5 11.5 #2? 1994 9 11.5 #3?
2003 Jun 13
5
Disabled echo canceller because of tone (rx)
Does anyone know what this means? It is in DMESG, and we have people complaining about echo. Disabled echo canceller because of tone (rx) John
2003 Jul 15
5
Text to Speech - Someone needs to do this
Why hasn't someone found 50 people who sound alike, put them in sound studios and record the 10,000 most commonly used words. You would all differnent forms of the 1,000 most words, i.e. leading, trailing, question etc. You can synthesize the other 0.05% when you run into them. With hard drives so big, processors so fast and EXT3 that can handle 30,000+ files in a single directory that
2011 Aug 15
3
desagregación temporal
Estimados usuarios de R: Tengo que hacer una desagregación temporal de una serie anual del producto interno bruto en trimestral. ¿Hay alguna forma de utilizar la librería en matlab de Quilis de desagregación temporal en R? La libreria se puede bajar de http://www.mathworks.com/matlabcentral/fileexchange/24438-temporal-disaggregation-library Saludos, Sebastián.
2018 May 09
0
Seasonal weekly average
...this to plot a chart with 52 points for the average based on the last five years; another line will then plot the current year, enabling a comparison of current weekly counts against a five year average for the same week. I would like some advice on how this can be done in 'R' . My data is disaggregated data - with dates in the format in 01/01/2018. > > Thanks > > Shakeel Suleman > > > > ************************************************************************** > The information contained in the EMail and any attachments is confidential and intended solely and for the at...