Displaying 6 results from an estimated 6 matches for "vv1".
Did you mean:
vr1
2024 Feb 06
2
Advice debugging M1Mac check errors
On 04/02/2024 19:41, Holger Hoefling wrote:
> Hi,
>
> I wanted to ask if people have good advice on how to debug M1Mac package
> check errors when you don?t have a Mac? Is a cloud machine the best option
> or is there something else?
I presumed this was about a CRAN package, possibly hdf5r which has a
R-devel-only warning from the Apple clang compiler. And that is not a
2005 Sep 12
0
grepping and splitting (with R 2.1.1)
...here the regular expression matches just one of the kind of elements to be separated in the table. 'Unfortunately', apart from 'normal' text files, I also have text files in which every word is preceded by a tag giving its word class, for example
a<-c("<w TO0>to <w VV1>find <w VVN>expected <w TO0>to <w VV2>skivvy <w DT0>much <c PUN>.",
"<w VVN>seen <w TO0>to <w VV3>kill <w DT0>many")
Now, as long as the regular expression entered by the user is something like
b<-<w TO0>to
or...
2008 May 13
8
static private and multi-inherit
...s)
{
WScript.echo(s);
}
*/
/***********************************************
Example:public static private
************************************************/
var test1=new Class(function(){
//v1 is public
$public.v1=1;
//v2 is private
$private.v2=2;
//define public variable with this
this.vv1=2;
//public function member
$public.show=function(){
//visit public and private variable
alert(v1);
alert(v2);
}
$public.set_static=function(v){
$static.v3=v;
}
});
var obj=new test1();
//visit public variable
alert(obj.v1);
alert(obj.vv1);
//try to visit private variable
alert(obj...
2002 Jul 08
0
factanal results interpretation - am I right here?
...re consistently grouped together (also when I use the non-normalised errors). Can I take this as a confirmation of the hypothesis that Yaw is attributed to a rotation of the path (PathRot)?
Thank you in advance,
RenE Bertin
Example of results:
# For modality=='VisVest':
> attach(subset(VV1bc.20020701.LY, VV1bc.20020701.LY$Modality=='VisVest') )
> VV1.factanal( cbind(yrelerr.PathRot,relerr.Yaw,relerr.PathRel.Orn,Spat,Orn,FD), factors=3)
Call:
factanal(factors = factors, covmat = cov(dmat, use = "complete.obs"), na.action = na.omit)
Uniquenesses:
yrelerr.P...
2002 Jun 28
0
handling of missing values in aov/lm
...applied. Is there a good (statistical or other) reason why there is no such
option? And alternatively, is there a more efficient solution than my code
below?
Thanks again,
--
RJV Bertin
NB: return address not valid; use r j v b e r t i n at h o t m a i l
dot c o m
df.Missing.Mean.VV1 <- function(df,verbose=F)
{ ## replace missing values in the dataframe df by the mean of the
corresponding column for each combination of the factors that interest us
here.
## have to find a more elegant fashion to find the factor columns!
Subjects<-length(levels(df$Snr))
## c...
2009 May 08
2
Probit cluster-robust standard errors
If I wanted to fit a logit model and account for clustering of observations, I would do something like:
library(Design)
f <- lrm(Y1 ~ X1 + X2, x=TRUE, y=TRUE, data=d)
g <- robcov(f, d$st.year)
What would I do if I wanted to do the same thing with a probit model?
?robcov says the input model must come from the Design package, but the Design package appears not to do probit?
Thanks very