Displaying 20 results from an estimated 20000 matches similar to: "reduce print accuracy"
2011 May 28
2
reduce printing accuracy
Dear all,
I would like to print a few values with less digits than the default.
How I can reduce how many digits are printed ?(warning: not the real integer resolution but what is shown in screen)
Best Regards
Alex
2005 Jan 20
2
Cross-validation accuracy in SVM
Hi all -
I am trying to tune an SVM model by optimizing the cross-validation
accuracy. Maximizing this value doesn't necessarily seem to minimize the
number of misclassifications. Can anyone tell me how the
cross-validation accuracy is defined? In the output below, for example,
cross-validation accuracy is 92.2%, while the number of correctly
classified samples is (1476+170)/(1476+170+4) =
2009 Mar 27
1
ROCR package finding maximum accuracy and optimal cutoff point
If we use the ROCR package to find the accuracy of a classifier
pred <- prediction(svm.pred, testset[,2])
perf.acc <- performance(pred,"acc")
Do we?find the maximum accuracy?as follows?(is there a simplier way?):
> max(perf.acc at x.values[[1]])
Then to find the cutoff point that maximizes the accuracy?do we do the
following?(is there a simpler way):
> cutoff.list <-
2013 Mar 13
1
Accuracy of some classifiers
I am using machine learning for one researching. I am using some
classifiers with 5-fold CV . I would like to know how it is possible to
extract the accuracy, for example, for KNN,neural networks and J48, for
each one of 5-fold because when I apply CV to my classifier, I obtain the
"mean accuracy" of 5-fold but each accuracy/error of each fold is not
returned.
Any help is welcome and
2010 Oct 21
1
Accuracy/Goodness of fit of nnet
Hi R-Helpers , am working on nnet package.Multinom() has an option for
finding the goodness of fit by giving the AIC value. Does nnet also gives
some value to determine the accuracy. If not, can you guide me with some
procedure to figure out the accuracy/goodness of fit of nnet model?
Thanks in advance.
--
View this message in context:
2005 Jun 27
2
Numerical accuracy
Hi people,
I need to prove the good quality of numerical accuracy of R. Anyone knows a
paper or anything else comparing R to other statistical softwares in terms of
numerical accuracy.
I've made a long search about that but I found nothing. Please help me!!
Thanx,
Talita Leite
-------------------------------------------------
Este e-mail foi enviado pelo Webmail da UFAL
IMP:
2007 Oct 03
1
accuracy of pt for x close to 0
Hello,
I have been playing around with the statistical distributions in R, and
overall I think the accuracy is very good. However, it seems that for the
Student's t distribution, the CDF loses accuracy when evaluated at values
close to zero. For instance, I did the following in R
----------------------------------
df<-seq(1,100,by=1)
2012 Nov 27
1
Effect of each term in the accuracy of Nonlinear multivariate regression fitting equation
Dear all,
I have a set of data with 4 inputs (independent variables) and one output
(dependent variable). I want to perform a regression analysis in order to
fit these data to a regression model, however due to the non-linearity of
the model I do not have a clue which equation to use. I am thinking of
starting with a very general equation including ^3 terms and interactions
between the variables
2009 Jan 23
2
The Quality & Accuracy of R
Hi All,
We have all had to face skeptical colleagues asking if software made by
volunteers could match the quality and accuracy of commercially written
software. Thanks to the prompting of a recent R-help thread, I read, "R:
Regulatory Compliance and Validation Issues, A Guidance Document for the
Use of R in Regulated Clinical Trial Environments
(http://www.r-project.org/doc/R-FDA.pdf).
2011 Jan 24
3
Find the sign
Hello :)
I wanted to right an expression to check when x and y have the same sign
and I wrote the following:
if ((x<0 && y<0) || (x>0 && y>0))
which looks pretty ugly to me.
Can you please suggest me a better way for that?
Regards
Alex
2011 Sep 08
1
[LLVMdev] [cfe-dev] Proposal: floating point accuracy metadata (OpenCL related)
Hi Peter,
This sounds like I really good idea. One thing that did occur to me
though from an OpenCL point of view is that ULP accuracy requirements
can differ for embedded and full profile so that may need to be handled
somehow.
Thanks,
Rob
On Wed, 2011-09-07 at 21:55 +0100, Peter Collingbourne wrote:
> Hi,
>
> This is my proposal to add floating point accuracy support to LLVM.
>
2011 Sep 07
3
[LLVMdev] Proposal: floating point accuracy metadata (OpenCL related)
Hi,
This is my proposal to add floating point accuracy support to LLVM.
The intention is that the frontend may provide metadata to signal to
the backend that it may select a less accurate (i.e. more efficient)
instruction to perform a given operation. This is primarily a
requirement of OpenCL, which specifies that certain floating point
operations may be computed inaccurately.
Comments
2004 Mar 13
4
nnet classification accuracy vs. other models
I was wandering if anybody ever tried to compare the classification
accuracy of nnet to other (rpart, tree, bagging) models. From what I
know, there is no reason to expect a significant difference in
classification accuracy between these models, yet in my particular case
I get about 10% error rate for tree, rpart and bagging model and 80%
error rate for nnet, applied to the same data.
Thanks.
2011 Sep 08
0
[LLVMdev] [cfe-dev] Proposal: floating point accuracy metadata (OpenCL related)
Peter,
Is there a way to make this flag globally available? Metadata can be fairly expensive to handle at each node when in many cases it is a global flag and not a per operation flag.
> -----Original Message-----
> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu]
> On Behalf Of Robert Quill
> Sent: Thursday, September 08, 2011 3:24 AM
> To: Peter
2011 Feb 24
1
accuracy of measurements
Dear R people
Could you please help with following
Trying to compare accuracy of tumor size evaluation by different
methods. So data looks like
id true metod1 method2 ...
1 2 2 2.5
2 1.5 2 2
3 2 2 2
etc.
Could you please give a hint how to deal with that.
Seems like {merror} does not suite to me because I am trying to compare
accuracy of measurements with their true known values not just
2010 Nov 17
3
Variable Editor
Hello everoyne,
If you have ever used matlab you should know the variable editor. You click over the value of a variable in the workspace and it opens like a excel sheet. Do you know if there is something like that in R . This will make easier for me to understand what values are stored in a matrix.
Also I am using rkward. Do you know if there is anyway to see the already defined variables?
I
2011 Sep 08
1
[LLVMdev] [cfe-dev] Proposal: floating point accuracy metadata (OpenCL related)
On Thu, Sep 08, 2011 at 11:15:06AM -0500, Villmow, Micah wrote:
> Peter,
> Is there a way to make this flag globally available? Metadata can be fairly expensive to handle at each node when in many cases it is a global flag and not a per operation flag.
There are two main reasons why I think we shouldn't go for global
flags:
1) It becomes difficult if not impossible to correctly link
2009 Jan 24
1
FW: [R] The Quality & Accuracy of R
Dear R Developers,
This is my first time subscribing to this list, so let me start out by saying thank you all very much for the incredible contribution you have made to science through your work on R.
As you all know many users of commercial stat packages, their managers, directors, CIOs etc. are skeptical of R's quality/accuracy. And as the recent NY Times article demonstrated, the
2011 Apr 06
3
Decimal Accuracy Loss?
This is hopefully a quick question on decimal accuracy. Is any
decimal accuracy lost when casting a numeric vector as a matrix? And
then again casting the result back to a numeric?
I'm finding that my calculation values are different when I run for
loops that manually calculate matrix multiplication as compared to
when I cast the vectors as matrices and multiply them using "%*%".
2013 Apr 04
1
Extract the accuracy of 10-CV
Hello guys!
I am working with some classifiers ( SVM,C4.5,RNA,etc) using 10-C.V.
Once I have the model of each one, I make the validation of these models in
one dataset. Then,with my model and the dataset, I extract a confusion
matrix to know the capacity of prediction from the model. And finally, I
extract the accuracy of this prediction based on the diagonal from the
confusion matrix.
The