search for: augment

Displaying 20 results from an estimated 666 matches for "augment".

2008 Jun 16
1
aggregate() function, strange behavior for augmented data
All, I'm re-running some analysis that has been augmented with additional data. When I use the exact same code for the augmented data, the behavior of the aggregate function is very strange, viz., one of the resulting variables is now coded as a factor while it was coded as numeric for the original data. Unfortunately, I cannot provide a reproducible co...
2009 Jan 28
1
Please Help for Augmented Prediction Plot
Hi R users,I have a question about augmented prediction plot (?augPred). The covariate of my data set is c(0, 0.01, 0.1, 1, 10, 100, 1000) and I have fitted a nonlinear mixed effects model.I use plot(augPred(out.nlme....)) to get the augmented prediction plot. However, because the scale of the covariate is too large thus I am not able to se...
2013 Jun 23
1
Scaling Statistical
Short question: Is it possible to use statistical tests, like the Augmented Dickey-Fuller test, in functions with for-loops? If not, are there any alternative ways to scale measures? Detailed explanation: I am working with time-series, and I want to flag curves that are not stationary and which display pulses, trends, or level shifts. >df DATE ID VALUE2012...
2012 Jun 08
1
[hivex] OS X: Augment pkg-config search path
...otools. OS X does not include pkg-config by default, and whatever mechanism installs it places pkg.m4 in some location among: /opt/local/share/aclocal/pkg.m4 /usr/local/share/aclocal/pkg.m4 PKG_CHECK_MODULES isn't defined if pkg.m4 isn't in /usr/share/aclocal, so ./configure dies without augmenting aclocal's search path. My question: What is the proper way to augment this path? I see two options available, one at the top of hivex/Makefile.am: ACLOCAL_AMFLAGS = -I m4 -I /opt/local/share/aclocal And one at the bottom of hivex/bootstrap: AUTOPOINT=true LIBTOOLIZE=true autoreconf --ver...
2003 Jun 14
1
Missing data augmentation
...the package "norm". I got some ways with the experiment, following the help file: s <- prelim.norm(as.matrix(myDataSet)) thetahat <- em.norm(s) rngseed(1234567) theta <- da.norm(s, thetahat, steps=20, showits=TRUE) At this stage however I get the following error: Steps of Data Augmentation: 1...2...Error: NA/NaN/Inf in foreign function call (arg 2) This seems strange to me, since the whole purpose of this routine is to work with NA values. So why is it complaining about NA values? After this I got it to work in an unlikely fashion: I first standardized my dataset using scale...
2007 Jun 19
0
Augment 'Matrix' matrices
>>>>> "SH" == Scott Hyde <hydes at byuh.edu> >>>>> on Mon, 18 Jun 2007 16:59:00 -1000 (HST) writes: SH> Martin, How does Matrix implement augmented matrices? I SH> tried this and got the expected result: {Replying to R-help, since this question has come up several times } >> V=matrix(1,2,3) >> V=cbind(V,V) >> V SH> [,1] [,2] [,3] [,4] [,5] [,6] SH> [1,] 1 1 1 1 1...
2018 May 15
2
questions on subscores.
Hello, I want to compute Wainer et al's augmented subscore(2001) using IRT but I can't find any packages or relevant code. There is a 'subscore' package in R, but I think it only gives functions to calculate augmented subscores using CTT(classical test theory). Is there other package or code to compute subscores using IRT? If it is...
2005 Aug 20
2
diagonal matrices
Hello all, I have matrices V.i of dimension n.i x n.i, where i = 1, ..., J, and the sum of n.i equals N. (and n.i ! = n.j) goal: create one large matrix V, where V has matrices V.i on diagonal. I create each matrix V.i in a for loop (1 to J), so each time I'd like to augment V with the most recently calculated V.i, such that I'll have V after the final iteration of the for loop. question: how to initialize V and do the augmentation. any advice much appreciated. cheers, dave ps - please respond directly to afshar@miami.edu, thanks! [[alternative HTML...
2011 Apr 11
0
[LLVMdev] gcroot + `section not found for addresss ...' ???
The linker is going off in the weeds trying to parse the dwarf unwind info. The CIE has: Leh_frame_common_begin0: .long 0 ## CIE Identifier Tag .byte 1 ## DW_CIE_VERSION .asciz "zLR" ## CIE Augmentation .byte 1 ## CIE Code Alignment Factor .byte 120 ## CIE Data Alignment Factor .byte 16 ## CIE Return Address Column .byte 2 ## Augmentation Size .byte 16 ## LSDA Encoding = pcrel .byte...
2004 Oct 13
4
incomplete function output
...n it, only the output of the last test is displayed. How can I ensure that the function root(var) will run and display the output from all tests, and not just the last one? Thank you, b. root <- function(var) { #---Phillips-Perron PP.test(var, lshort = TRUE) PP.test(var, lshort = FALSE) #---Augmented Dickey-Fuller adf.test(var, alternative = "stationary", k = trunc((length(var)-1)^(1/3))) #---KPSS kpss.test(var, null = "Level", lshort = TRUE) kpss.test(var, null = "Trend", lshort = FALSE) }
2007 May 10
1
Follow-up about ordinal logit with mixtures: how about 'continuation ratio' strategy?
...is a follow up to the message I posted 3 days ago about how to estimate mixed ordinal logit models. I hope you don't mind that I am just pasting in the code and comments from an R file for your feedback. Actual estimates are at the end of the post. ### Subject: mixed ordinal logit via "augmented" data setup. ### I've been interested in estimating an ordinal logit model with ### a random parameter. I asked in r-help about it. It appears to be ### a difficult problem because even well established commercial ### programs like SAS are prone to provide unreliable estimates. ### So...
2010 Oct 29
3
Dickey Fuller Test
...,5841,5832,5505,5573,5331,5355,6057,6055,6771,6669,6375,6666,6383,6118 ,5927,5750,5122,5398,5817,6163,6763,6835,6678,6821,6421,6338,6265,6291 ,5540,5822,6318,6268,7270,7096,6505,7039,6440,6446,6717,6320) YY=as.timeSeries(Y) adf.test(Y) adf.test(YY) ======== Output ==== > adf.test(Y) Augmented Dickey-Fuller Test data: Y Dickey-Fuller = -6.1661, Lag order = 5, p-value = 0.01 alternative hypothesis: stationary Warning message: In adf.test(Y) : p-value smaller than printed p-value > adf.test(YY) Augmented Dickey-Fuller Test data: YY Dickey-Fuller = 12.4944, Lag order =...
2011 Apr 10
2
[LLVMdev] gcroot + `section not found for addresss ...' ???
Hi, If I type define i32 @main() gc "shadow-stack" { entry: %0 = alloca i8* %1 = call i8* @malloc(i64 1) store i8* %1, i8** %0 call void @llvm.gcroot(i8** %0, i8* null) ret i32 0 } declare i8* @malloc(i64) declare void @llvm.gcroot(i8**, i8*) nounwind in test.ll and then do > llc test.ll > gcc test.s I get the error ld: in
2009 Sep 08
0
feature and bug in wilcox.test
...gn_test of the coin package as an option through the argument ties="Pratt" as opposed to ties="HollanderWolfe" (default). I understand this this might be more difficult for wilcox.test because of the method for calculating the null distribution. 2. For the following two samples Augmenters <- c(17.94,13.32,11.31,10.62,7.56, 5.73,5.61,5.40,3.30,3.09,.93) Reducers <- c(7.74,5.04,1.68,0.0,-3.03,-3.09,-10.53) I get the following strange confidence percentage of 91.46556 together with a warning message, when asking for a 95% lower bound. I had the impression tha...
2007 Apr 12
1
LME: internal workings of QR factorization
...| = Q_(i) | | | Delta 0 0 | | 0 R_00(i) c_0(i) | \ / \ / the text indicates that the Q-R factorization is limited to the first q columns of the augmented matrix on the left. If one plunks the first q columns of the augmented matrix on the left into a qr factorization, one obtains an orthogonal matrix Q that is (n_i + q) x q and a nonsingular upper triangular matrix R that is q x q. While the text describes R as a nonsingular upper triangular q x...
2011 Apr 12
2
[LLVMdev] gcroot + `section not found for addresss ...' ???
...The linker is going off in the weeds trying to parse the dwarf unwind info. The CIE has: > > > Leh_frame_common_begin0: > .long 0 ## CIE Identifier Tag > .byte 1 ## DW_CIE_VERSION > .asciz "zLR" ## CIE Augmentation > .byte 1 ## CIE Code Alignment Factor > .byte 120 ## CIE Data Alignment Factor > .byte 16 ## CIE Return Address Column > .byte 2 ## Augmentation Size > .byte 16 ## LSD...
2023 Mar 06
1
Augment base::replace(x, list, value) to allow list= to be a predicate?
Le 04/03/2023 ? 01:21, Pavel Krivitsky a ?crit?: > Dear All, > > Currently, list= in base::replace(x, list, value) has to be an index > vector. For me, at least, the most common use case is for list= to be > some simple property of elements of x, e.g., > > x <- c(1,2,NA,3) > replace(x, is.na(x), 0) > > Particularly when using R pipes, which don't allow multiple
2018 May 15
0
questions on subscores.
I have no idea, but Google pointed me to this https://cran.r-project.org/web/packages/subscore/index.html Hth Ulrik "Hyunju Kim" <asdfg4882 at yonsei.ac.kr> schrieb am Di., 15. Mai 2018, 07:21: > > > > Hello, > > > > I want to compute Wainer et al's augmented subscore(2001) using IRT but I > can't find any packages or relevant code. > > There is a 'subscore' package in R, but I think it only gives functions to > calculate augmented subscores using CTT(classical test theory). > > Is there other package or code to compute s...
2023 Mar 07
1
Augment base::replace(x, list, value) to allow list= to be a predicate?
This could be extended to sub and gsub as well which gsubfn in the gusbfn package already does: library(gsubfn) gsubfn("^..", toupper, c("abc", "xyz")) ## [1] "ABc" "XYz" On Fri, Mar 3, 2023 at 7:22?PM Pavel Krivitsky <p.krivitsky at unsw.edu.au> wrote: > > Dear All, > > Currently, list= in base::replace(x, list, value)
2007 Dec 08
2
time series tests
Hi all, Can anyone clear my doubts about what conclusions to take with the following what puts of some time series tests: > adf.test(melbmax) Augmented Dickey-Fuller Test data: melbmax Dickey-Fuller = -5.4075, Lag order = 15, p-value = 0.01 alternative hypothesis: stationary Warning message: p-value smaller than printed p-value in: adf.test(melbmax) >adf.test(melbmax,k=0,alternative="stationary") Augmented Dickey-F...