~ubuntu-branches/ubuntu/maverick/cdk/maverick

« back to all changes in this revision

Viewing changes to src/org/openscience/cdk/qsar/model/data/register_999.R

  • Committer: Bazaar Package Importer
  • Author(s): Paul Cager
  • Date: 2008-04-09 21:17:53 UTC
  • Revision ID: james.westby@ubuntu.com-20080409211753-46lmjw5z8mx5pd8d
Tags: upstream-1.0.2
ImportĀ upstreamĀ versionĀ 1.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
setJavaFunctionConverter(lmFitConverter, function(x,...){inherits(x,'lm')},
 
2
                          description='lm fit object to Java',
 
3
                          fromJava=F)
 
4
setJavaFunctionConverter(lmPredictConverter, function(x,...){inherits(x,'lmregprediction')},
 
5
                          description='lm predict object to Java',
 
6
                          fromJava=F)
 
7
setJavaFunctionConverter(lmSummaryConverter, function(x,...){inherits(x,'summary.lm')},
 
8
                          description='lm summary object to Java',
 
9
                          fromJava=F)
 
10
setJavaFunctionConverter(cnnClassFitConverter, function(x,...){inherits(x,'nnet.formula')},
 
11
                          description='cnn (nnet) classification fit object to Java',
 
12
                          fromJava=F)
 
13
setJavaFunctionConverter(cnnSummaryConverter, function(x,...){inherits(x,'summary.nnet')},
 
14
                          description='cnn (nnet) summary object to Java',
 
15
                          fromJava=F)
 
16
setJavaFunctionConverter(cnnFitConverter, function(x,...){inherits(x,'nnet')},
 
17
                          description='cnn (nnet) fit object to Java',
 
18
                          fromJava=F)
 
19
setJavaFunctionConverter(cnnClassPredictConverter, function(x,...){inherits(x,'cnnclsprediction')},
 
20
                          description='cnn (nnet) classification predict object to Java',
 
21
                          fromJava=F)
 
22
setJavaFunctionConverter(cnnPredictConverter, function(x,...){inherits(x,'cnnregprediction')},
 
23
                          description='cnn (nnet) predict object to Java',
 
24
                          fromJava=F)
 
25
setJavaFunctionConverter(plsFitConverter, function(x,...){inherits(x,'mvr')},
 
26
                          description='pls/pcr fit object to Java',
 
27
                          fromJava=F)
 
28
setJavaFunctionConverter(plsPredictConverter, function(x,...){inherits(x,'plsregressionprediction')},
 
29
                          description='pls/pcr predict object to Java',
 
30
                          fromJava=F)
 
31