search for: hstart

Displaying 9 results from an estimated 9 matches for "hstart".

Did you mean: start
2007 Nov 28
2
extracting year an month from ts data set
I have an ascii data set of monthly observation starting in Jan 1946 with a header. hstarts 57 65 95 103 103 97 94 . . . Which I read with the following code tab6.1<-ts(read.table(fname, header=TRUE),frequency=12,start=c(1946,1)) I would like to run a time series model with dummy variables for each month. If I had a variable which take values from 1 to 12 indicating the month I cou...
2007 Feb 12
0
[PATCH] lift physical address restriction in svae/restore code
...================================================================== --- 2007-02-07.orig/tools/libxc/xc_linux_save.c 2007-02-01 17:41:07.000000000 +0100 +++ 2007-02-07/tools/libxc/xc_linux_save.c 2007-02-12 09:05:24.000000000 +0100 @@ -495,7 +495,7 @@ static int canonicalize_pagetable(unsign hstart = (hvirt_start >> L2_PAGETABLE_SHIFT_PAE) & 0x1ff; he = ((const uint64_t *) spage)[hstart]; - if ( ((he >> PAGE_SHIFT) & 0x0fffffff) == m2p_mfn0 ) { + if ( ((he >> PAGE_SHIFT) & MFN_MASK_X86) == m2p_mfn0 ) { /* hvirt starts with xe...
2013 May 20
1
Objects created by more than one data call?
...quot;R CMD check" reports "no visible binding for global variable 'nonEnglishNames'", where 'nonEnglishNames' is a dataset in Ecdat used as the default argument for a function. With LazyData, that NOTE disappears. However, then I get, "Warning: objects 'Hstarts', 'Hstarts', 'MedExp' are created by more than one data call". What do you suggest I do to fix this problem? Thanks, Spencer Graves > sessionInfo() R version 3.0.0 (2013-04-03) Platform: i386-w64-mingw32/i386 (32-bit) locale: [1] LC_COLLATE...
2007 Dec 05
1
Working with "ts" objects
...the data set from several different data sets using the ts.intersect() function (see second code below)the problem becomes even more involved and keeping track of which columns are associated with which variables can be rather daunting. All I wanted was to plot actual vs. predicted values of "hstarts" and the residuals from the model. Given the difficulties I have encountered I know my students will have similar problems. Is there a source other than the basic R manuals that I can consult and recommend to my students that will help get a handle on working with time series objects? I fou...
2000 Sep 07
3
plot with two y axes
...ake a transition from S-plus under Windows to R under Linux. My immediate aim is to produce a scatter plot with two y-axes with different scales. That can be done in S-plus with a command of the following form: guiPlot( PlotType="Scatter", DataSet="execon", Columns="years,hstart,ship", AxisType="Multiple Y" ), where years, hstart, and ship are columns in the dataset called execon. Is there an equivalent command in R? I'd be most grateful for any suggestions. --- John P. Burkett Department of Economics University of Rhode Island 10 Chafee Road, Suite 3...
2020 Oct 28
2
R optim() function
Hi R-Help, I am using R to do functional outlier detection (using PCA to reduce to 2 dimensions - the functional boxplot methodology used in the Rainbow package), and using Hscv.diag function to calculate the bandwidth matrix where this line of code is run: result <- optim(diag(Hstart), scv.mat.temp, method = "Nelder-Mead", control = list(trace = as.numeric(verbose))) Within the optim function, there is a call to an external C function: .External2(C_optim, par, fn1, gr1, method, con, lower, upper) Where Par = (0.339, 0.339), fn1 = function (diagH) { H <- diag(dia...
2006 Dec 07
0
Fwd: win32-service problems with patch
...e done. I have not tried this code with any other win32-service app (rails, etc.) so I don''t know how they''ll work with this. The basic flow is now: Thread 1 Thread 2 "Green Thread" service_init start ThreadProc wait for hStart, or Thread 2 Exit Startup and set hStart wait for hStop start green thread wait for hStop wait for hStop && normal processing service_main wait for hStop wait for hStop && nor...
2007 Dec 12
0
Hep on using GAM() in R
...problem with the codes that i used? What does these warnings mean? Q2: As we know, the span is an important role for smoothing, so i try to choose the optimal span by the AIC criterion. But it seemed that i can't run it successfully, My codes are listed below. hmin<-0.05; hmax<-0.95; hstart<-hmin; nh<-100 hstep<-(hmax-hmin)/(nh-1) aic.h<- matrix(NA,nrow=nh,ncol=2) for (i in 1:nh) { htry<-hstart+(i-1)*hstep m.gam <-gam(mark~lo(x,y,span=htry)+lo(lstday2004,span=htry)+lo(slope,span=htry)+lo(ndvi2004,span=htry)+lo(elevation,span=htry)+disbinary,family=binomial(logi...
2018 Mar 10
17
[RFC PATCH 00/13] SVM (share virtual memory) with HMM in nouveau
From: Jérôme Glisse <jglisse at redhat.com> (mm is cced just to allow exposure of device driver work without ccing a long list of peoples. I do not think there is anything usefull to discuss from mm point of view but i might be wrong, so just for the curious :)). git://people.freedesktop.org/~glisse/linux branch: nouveau-hmm-v00