Package bt

Examples of bt.BayesianTest


      List<Integer> y = new ArrayList<Integer>();
      y.add(1);
      List<Integer> z = new ArrayList<Integer>();
      z.add(2);
      z.add(3);
      BayesianTest bt = new BayesianTest();
      bt.independent(dataset, x, y, z);
      System.out.println("loglikelihoods: " + bt.getLoglikelihoods()[0] + " , " + bt.getLoglikelihoods()[1]);
      System.out.println("logprobs  : " + bt.getLogProbs()[0] + " , " + bt.getLogProbs()[1]);
    } catch (IOException e) {
      e.printStackTrace();
    }
  }
View Full Code Here

TOP

Related Classes of bt.BayesianTest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.