Displaying 10 results from an estimated 10 matches for "retlist".
Did you mean:
reglist
2009 Nov 21
1
what do i do to fix missing packages...see error
...-0.023390 -0.009384 0.664700 4.092000
> desc <- function(mydata) {
+ require(e1071)
+ quantls <- quantile(x=mydata, probs=seq(from=0, to=1, by=0.25))
+ themean <- mean(mydata)
+ thesd <- sd(mydata)
+ kurt <- kurtosis(mydata)
+ skew <- skewness(mydata)
+ retlist <- list(Quantiles=quantls, Mean=themean, StandDev=thesd,
+ Skewness=skew, Kurtosis=kurt)
+ return(retlist)
+ }
> descstats <- desc(exampledata)
Loading required package: e1071
Error in desc(exampledata) : could not find function "kurtosis"
In addition: War...
2012 Jun 15
0
argument "x" is missing, with no default - Please help find argument x
...1,2]
sumvar<-epi.tests(c(truepos, falsepos , falseneg, trueneg), verbose=T)
epi.tests(c(truepos, falsepos , falseneg, trueneg), verbose=F)
# Calculate the overall accuracy.
cv.evaluate$correct <- cv.evaluate$prediction == cv.evaluate$remitter
mymean<-mean(cv.evaluate$correct)
retlist<-data.frame(mtry, sumvar$se, sumvar$sp, mean(cv.evaluate$correct))
return(retlist)
}
subloop<- function(mtry=mtry, ml.frame=ml.frame, ntrees=ntrees) {
nfolds<- 10
# shuffle the numbers and divide into 10 groups
numberOfRows<-dim(ml.frame)[1]
lengthOfDiv<-numberOfRows/nfold...
2020 Jan 10
8
[PATCH 0/7] Various Python pycodestyle fixes
Fixes the majority of the pycodestyle issues in the Python bindings,
leaving only an overly length line in setup.py.
Add a simple optional pycodestyle-based test to avoid regressions in the
future.
Pino Toscano (7):
python: PEP 8: adapt empty lines
python: PEP 8: adapt whitespaces in lines
python: tests: catch specific exception
python: tests: improve variable naming
python: tests:
2020 Jan 10
9
[PATCH v2 0/8] Various Python pycodestyle fixes
Fixes all the pycodestyle issues in the Python bindings, overring one
that does not make sense to change (and it's in setup.py, so almost
irrelevant).
Add a simple optional pycodestyle-based test to avoid regressions in the
future.
Pino Toscano (8):
python: PEP 8: adapt empty lines
python: PEP 8: adapt whitespaces in lines
python: tests: catch specific exception
python: tests:
2007 May 08
1
Looking for a comprehensive descriptive statistics package
Hi all,
I'm looking for a package that will give me comprehensive set of
descriptive statistics, including skew and kurtosis. Also, is there a
similar package that will provide multivariate descriptive statistics as
well? Thanks in advance,
David
--
===========================================================================
David Kaplan, Ph.D.
Professor
Department of Educational
2007 Jul 10
1
How to preserve data across function calls in a library package
...quot;many times\n");
Rprintf("%p\n",book);
Rprintf("%p\n",foot);
}
SEXP
kNN_e(SEXP data, SEXP Nrow, SEXP Ncol,SEXP K,SEXP Eps)
{
int nrow=asInteger(Nrow);
int ncol=asInteger(Ncol);
int k=asInteger(K);
double eps=asReal(Eps);
SEXP ans,distance;
SEXP retlist;
PROTECT(ans=allocMatrix(INTSXP,nrow,k)); //The 2nd argument gives
the number of rows, and the last the number of cols see http://cran.r-
project.org/doc/manuals/R-exts.html
PROTECT(distance=allocMatrix(REALSXP,nrow,k));
ANNpointArray datapoints;
ANNpoint qpoint;
ANNkd_tree* kdTre...
2007 Jul 10
1
How to preserve data across function calls in a library package
...quot;many times\n");
Rprintf("%p\n",book);
Rprintf("%p\n",foot);
}
SEXP
kNN_e(SEXP data, SEXP Nrow, SEXP Ncol,SEXP K,SEXP Eps)
{
int nrow=asInteger(Nrow);
int ncol=asInteger(Ncol);
int k=asInteger(K);
double eps=asReal(Eps);
SEXP ans,distance;
SEXP retlist;
PROTECT(ans=allocMatrix(INTSXP,nrow,k)); //The 2nd argument gives
the number of rows, and the last the number of cols see http://cran.r-
project.org/doc/manuals/R-exts.html
PROTECT(distance=allocMatrix(REALSXP,nrow,k));
ANNpointArray datapoints;
ANNpoint qpoint;
ANNkd_tree* kdTre...
2015 Nov 11
2
Re: xen+ssh with openauth
...()
/usr/lib64/python2.7/site-packages/libvirt.pyc in listAllDomains(self, flags)
4925 ret = libvirtmod.virConnectListAllDomains(self._o, flags)
4926 if ret is None:
-> 4927 raise libvirtError("virConnectListAllDomains()
failed", conn=self)
4928
4929 retlist = list()
============================================================================
Any suggestion why?
Thank you,
Shahar.
>
> Regards,
> Daniel
> --
> |: http://berrange.com -o- http://www.flickr.com/photos/dberrange/ :|
> |: http://libvirt.org -o-...
2015 Nov 11
0
Re: xen+ssh with openauth
...packages/libvirt.pyc in listAllDomains(self, flags)
> 4925 ret = libvirtmod.virConnectListAllDomains(self._o, flags)
> 4926 if ret is None:
> -> 4927 raise libvirtError("virConnectListAllDomains()
> failed", conn=self)
> 4928
> 4929 retlist = list()
> ============================================================================
>
> Any suggestion why?
That means the libvirtd daemon you are connecting to does not support
that API call. Presumably because it is an older version that your
client libvirt version.
Regards,
Dani...
2015 Nov 03
2
xen+ssh with openauth
Hi,
I am trying to connect to remote libvirt via script,
and I get password prompt from the shell.
============================================================================
uri='xen+ssh://root@myserver/?no_verify=1'
def req(credentials, user_data):
print('in req...\n')
for cred in credentials:
if cred[0] == libvirt.VIR_CRED_AUTHNAME:
cred[4] =