Tabnine Logo
MathUtils.ssReg
Code IndexAdd Tabnine to your IDE (free)

How to use
ssReg
method
in
org.canova.api.util.MathUtils

Best Java code snippets using org.canova.api.util.MathUtils.ssReg (Showing top 2 results out of 315)

origin: jpatanooga/Canova

/**
 * Total variance in target attribute
 * @param residuals error
 * @param targetAttribute data for target attribute
 * @return Total variance in target attribute
 */
public static double ssTotal(double[] residuals,double[] targetAttribute) {
  return ssReg(residuals,targetAttribute) + ssError(residuals,targetAttribute);
}
origin: org.nd4j/canova-api

/**
 * Total variance in target attribute
 *
 * @param residuals       error
 * @param targetAttribute data for target attribute
 * @return Total variance in target attribute
 */
public static double ssTotal(double[] residuals, double[] targetAttribute) {
 return ssReg(residuals, targetAttribute) + ssError(residuals, targetAttribute);
}
org.canova.api.utilMathUtilsssReg

Javadoc

How much of the variance is explained by the regression

Popular methods of MathUtils

  • clamp
    Clamps the value to a discrete value
  • column
    This returns the given column over an n arrays
  • combination
    This returns the combination of n choose r
  • coordSplit
    This returns the coordinate split in a list of coordinates such that the values for ret[0] are the x
  • correlation
    Returns the correlation coefficient of two double vectors.
  • factorial
    This will return the factorial of the given number n.
  • gr
    Tests if a is greater than b.
  • idf
    Inverse document frequency: the total docs divided by the number of times the word appeared in a doc
  • log2
    Returns the logarithm of a for base 2.
  • maxIndex
    Returns index of maximum element in a given array of doubles. First maximum is returned.
  • normalize
    Normalizes the doubles in the array using the given value.
  • randomNumberBetween
    Generates a random integer between the specified numbers
  • normalize,
  • randomNumberBetween,
  • sm,
  • ssError,
  • ssTotal,
  • sum,
  • sumOfMeanDifferences,
  • sumOfMeanDifferencesOnePoint,
  • sumOfProducts

Popular in Java

  • Parsing JSON documents to java classes using gson
  • setContentView (Activity)
  • onRequestPermissionsResult (Fragment)
  • getExternalFilesDir (Context)
  • Kernel (java.awt.image)
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now