search for: sjd

Displaying 20 results from an estimated 40 matches for "sjd".

Did you mean: sd
2011 Apr 29
1
question of VECM restricted regression
Dear Colleague I am trying to figure out how to use R to do OLS restricted VECM regression. However, there are some notation I cannot understand. Please tell me what is 'ect', 'sd' and 'LRM.dl1 in the following practice: #OLS retricted VECM regression data(denmark) sjd <- denmark[, c("LRM", "LRY", "IBO", "IDE")] sjd.vecm<- ca.jo(sjd, ecdet = "const", type="eigen", K=2, spec="longrun", season=4) sjd.vecm.rls<-cajorls(sjd.vecm,r=1) summary(sjd.vecm.rls$rlm) sjd.vecm.rls$beta Response LR...
2011 Nov 11
1
Fwd: Use of R for VECM
...e (Consumption and Output) VECM with Co-Integration (I(1)) with three lags on Consumption and Output expressed aa lags of differences. R Code and one segment fo the output (other parts of the output are repeatitive) are as follows. > us=read.table("usdata.1995-2009.txt",header=T) > sjd<-us[,c("Y","C")] > sjd.vecm1 <- ca.jo(sjd, ecdet='const', type="eigen", K=3, spec="longrun", + season=4) > sjd.vecm2 <- ca.jo(sjd, ecdet='const', type="eigen", K=3, spec="transitory", + season=4) > sjd.vec...
2010 Mar 03
4
Windows 2003 domU can not use 7G RAM ?
I installed a 32 bit Windows 2003 enterprise edtion domU. xm list shows the domU has 7G RAM. But Windows 2003 shows only 3.75G RAM. I do not know what''s wrong. Anyone knows? [root@sjd-hot w2k3e]# xm info host : sjd-hot.rashost.com release : 2.6.18.8-xen version : #1 SMP Fri Nov 27 03:53:01 UTC 2009 machine : x86_64 nr_cpus : 4 nr_nodes : 1 cores_per_socket : 4 threads_per_core...
2024 Feb 12
1
Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line
...ow_bug.cgi?id=18666 Best Tomas > Iago > > ________________________________ > De: CALUM POLWART <polc1410 at gmail.com> > Enviat el: divendres, 9 de febrer de 2024 18:28 > Per a: Duncan Murdoch <murdoch.duncan at gmail.com> > A/c: Iago Gin? V?zquez <iago.gine at sjd.es>; r-help at r-project.org <r-help at r-project.org> > Tema: Re: [R] Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line > > I don't use term, but I've just tested it and this is reproducable. > > Is it a bug? Not s...
2024 Feb 09
1
Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line
...can, do you think it's worth to comment this in R-devel list? Iago ________________________________ De: CALUM POLWART <polc1410 at gmail.com> Enviat el: divendres, 9 de febrer de 2024 18:28 Per a: Duncan Murdoch <murdoch.duncan at gmail.com> A/c: Iago Gin? V?zquez <iago.gine at sjd.es>; r-help at r-project.org <r-help at r-project.org> Tema: Re: [R] Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line I don't use term, but I've just tested it and this is reproducable. Is it a bug? Not sure. If you hit c after...
2011 Apr 16
1
cajolst
...g cajolst function. Finally, I've tried Johansen and Juselius data and procedure, that is described by dr. B. Pfaff ("Analysis of Integrated and Co-integrated Time Series with R"): > example(ca.jo) ... [data, formulas and other related stuff] ... > lue.vecm<-summary(cajolst(sjd,season=4)) > slotNames(lue.vecm) [1] "classname" "test.name" "testreg" "teststat" "cval" "bpoint" [7] "signif" "model" "type" "auxstat" "lag" "H&quo...
2024 Feb 09
1
Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line
...n Windows. > > > > Iago > > ------------------------------------------------------------------------ > > *De:* Duncan Murdoch <murdoch.duncan at gmail.com> > > *Enviat el:* divendres, 9 de febrer de 2024 13:50 > > *Per a:* Iago Gin? V?zquez <iago.gine at sjd.es> > > *Tema:* Re: [R] Avoiding Delete key function as 'Quit R' in Rterm when > > there are no characters in cursor line > > On 09/02/2024 6:25 a.m., Iago Gin? V?zquez wrote: > >> Hi all, > >> > >> I cite from README.Rterm > >> >...
2024 Mar 01
1
gsub issue with consecutive pattern finds
...pecifier. I used "?" for the optional character below (which must be escaped). > gsub("([aeiouAEIOU])\\?*([aeiouAEIOU])", "\\1_\\2", "aerioue") [1] "a_eri_ou_e" Cheers, Bert On Fri, Mar 1, 2024 at 3:59?AM Iago Gin? V?zquez <iago.gine at sjd.es> wrote: > > Hi Iris, > > Thank you. Further, very nice solution. > > Best, > > Iago > > On 01/03/2024 12:49, Iris Simmons wrote: > > Hi Iago, > > > > > > This is not a bug. It is expected. Patterns may not overlap. However, there > >...
2024 Apr 12
1
Debugging functions defined (locally) inside another functions
...inserting a call to debug(g) after it's created. How should I call trace() if f was a function? Best regards, Iago ________________________________ De: Ivan Krylov <ikrylov at disroot.org> Enviat el: divendres, 12 d??abril de 2024 14:38 Per a: Iago Gin?? V??zquez <iago.gine at sjd.es> A/c: r-help at r-project.org <r-help at r-project.org> Tema: Re: [R] Debugging functions defined (locally) inside another functions ?? Fri, 12 Apr 2024 12:15:07 +0000 Iago Gin?? V??zquez <iago.gine at sjd.es> ??????: > f <- function(whatever){ > ... > g <-...
2024 Apr 12
1
Debugging functions defined (locally) inside another functions
? Fri, 12 Apr 2024 12:15:07 +0000 Iago Gin? V?zquez <iago.gine at sjd.es> ?????: > f <- function(whatever){ > ... > g <- function(whatever2){ > ... > } > ... > } > > If I wanted to debug some thing directly inside f I would do > debug(f). But this does not go inside g code. On the other hand, > debug(g) doe...
2024 Mar 01
1
gsub issue with consecutive pattern finds
...uot;, "aerioue", perl = TRUE, ignore.case = > TRUE) > > ## or > > gsub("(?i)([aeiou])(?=[aeiou])", "\\1_", "aerioue", perl = TRUE) > ``` > > I hope this helps! > > > On Fri, Mar 1, 2024, 06:37 Iago Gin? V?zquez<iago.gine at sjd.es> wrote: > >> Hi all, >> >> I tested next command: >> >> gsub("([aeiouAEIOU])([aeiouAEIOU])", "\\1_\\2", "aerioue") >> >> with the following output: >> >> [1] "a_eri_ou_e" >> >> So, th...
2024 May 15
1
FR: Customize background colour of row and column headers for the View output
...= guiColors[dataeditbg]; Thanks! Iago [1] https://svn.r-project.org/R/trunk/src/library/utils/src/windows/dataentry.c ________________________________ De: Duncan Murdoch <murdoch.duncan at gmail.com> Enviat el: dimarts, 14 de maig de 2024 14:22 Per a: Iago Gin?? V??zquez <iago.gine at sjd.es>; r-devel at R-project.org <r-devel at r-project.org> A/c: Ivan Krylov <ikrylov at disroot.org> Tema: Re: FR: Customize background colour of row and column headers for the View output This seems like something that should be fairly easily doable. Why don't you work out a pat...
2024 May 14
1
FR: Customize background colour of row and column headers for the View output
...ago > ------------------------------------------------------------------------ > *De:* Ivan Krylov <ikrylov at disroot.org> > *Enviat el:* dilluns, 13 de maig de 2024 14:34 > *Per a:* Duncan Murdoch <murdoch.duncan at gmail.com> > *A/c:* Iago Gin? V?zquez <iago.gine at sjd.es>; r-help at r-project.org > <r-help at r-project.org> > *Tema:* Re: [R] Is there some way to customize colours for the View output? > ? Mon, 13 May 2024 06:08:22 -0400 > Duncan Murdoch <murdoch.duncan at gmail.com> ?????: > >> The row and column names don...
2010 Aug 30
1
Johansen test
Hi all, I am working on exporting "Johansen test statistics" (Johansen test: "ca.jo" in package "urca")to Excel. The problem is that the function output is not a number, but like this: ##################################################### # Johansen-Procedure Unit Root / Cointegration Test # ##################################################### The value of the
2024 Feb 09
1
Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line
Yes, indeed, I am talking about Rterm in Windows. Iago ________________________________ De: Duncan Murdoch <murdoch.duncan at gmail.com> Enviat el: divendres, 9 de febrer de 2024 13:50 Per a: Iago Gin? V?zquez <iago.gine at sjd.es> Tema: Re: [R] Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line On 09/02/2024 6:25 a.m., Iago Gin? V?zquez wrote: > Hi all, > > I cite from README.Rterm > > ^D, DEL?????: Delete the character under the cursor. > > That...
2024 Mar 01
1
gsub issue with consecutive pattern finds
...ub("([aeiou])(?=[aeiou])", "\\1_", "aerioue", perl = TRUE, ignore.case = TRUE) ## or gsub("(?i)([aeiou])(?=[aeiou])", "\\1_", "aerioue", perl = TRUE) ``` I hope this helps! On Fri, Mar 1, 2024, 06:37 Iago Gin? V?zquez <iago.gine at sjd.es> wrote: > Hi all, > > I tested next command: > > gsub("([aeiouAEIOU])([aeiouAEIOU])", "\\1_\\2", "aerioue") > > with the following output: > > [1] "a_eri_ou_e" > > So, there are two consecutive vowels where an underscor...
2024 May 14
1
FR: Customize background colour of row and column headers for the View output
...b.co/Dkn2pVs). Could this be implemented? Thank you! Best regards, Iago ________________________________ De: Ivan Krylov <ikrylov at disroot.org> Enviat el: dilluns, 13 de maig de 2024 14:34 Per a: Duncan Murdoch <murdoch.duncan at gmail.com> A/c: Iago Gin?? V??zquez <iago.gine at sjd.es>; r-help at r-project.org <r-help at r-project.org> Tema: Re: [R] Is there some way to customize colours for the View output? ?? Mon, 13 May 2024 06:08:22 -0400 Duncan Murdoch <murdoch.duncan at gmail.com> ??????: > The row and column names don't appear to be controllable...
2024 Feb 09
1
Avoiding Delete key function as 'Quit R' in Rterm when there are no characters in cursor line
...d, I am talking about Rterm in Windows. > > Iago > ------------------------------------------------------------------------ > *De:* Duncan Murdoch <murdoch.duncan at gmail.com> > *Enviat el:* divendres, 9 de febrer de 2024 13:50 > *Per a:* Iago Gin? V?zquez <iago.gine at sjd.es> > *Tema:* Re: [R] Avoiding Delete key function as 'Quit R' in Rterm when > there are no characters in cursor line > On 09/02/2024 6:25 a.m., Iago Gin? V?zquez wrote: >> Hi all, >> >> I cite from README.Rterm >> >> ^D, DEL?????: Delete the cha...
2024 May 13
1
Is there some way to customize colours for the View output?
...change. May this be a bug? Thank you for your help. Best regards, Iago ________________________________ De: Rolf Turner <rolfturner at posteo.net> Enviat el: dimarts, 7 de maig de 2024 23:58 Per a: Duncan Murdoch <murdoch.duncan at gmail.com> A/c: Iago Gin? V?zquez <iago.gine at sjd.es>; r-help at r-project.org <r-help at r-project.org>; Achim Zeileis <Achim.Zeileis at uibk.ac.at> Tema: Re: [R] Is there some way to customize colours for the View output? On Tue, 7 May 2024 06:34:50 -0400 Duncan Murdoch <murdoch.duncan at gmail.com> wrote: > On 07/05/2...
2024 May 15
1
FR: Customize background colour of row and column headers for the View output
....org/R/trunk/src/library/utils/src/windows/dataentry.c> > ------------------------------------------------------------------------ > *De:* Duncan Murdoch <murdoch.duncan at gmail.com> > *Enviat el:* dimarts, 14 de maig de 2024 14:22 > *Per a:* Iago Gin? V?zquez <iago.gine at sjd.es>; r-devel at R-project.org > <r-devel at r-project.org> > *A/c:* Ivan Krylov <ikrylov at disroot.org> > *Tema:* Re: FR: Customize background colour of row and column headers > for the View output > This seems like something that should be fairly easily doable.? Wh...