org.bigml.binding.resources.StatisticalTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bigml-binding Show documentation
Show all versions of bigml-binding Show documentation
An open source Java client that gives you a simple binding to interact with BigML. You can use it to
easily create, retrieve, list, update, and delete BigML resources.
package org.bigml.binding.resources;
import org.bigml.binding.BigMLClient;
import org.bigml.binding.utils.CacheManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This class is used by the BigML class as a mixin that provides the StatisticalTest' REST calls.
*
* It should not be instantiated independently.
*
* Full API documentation on the API can be found from BigML at:
* https://bigml.com/api/statisticaltests
*
*
*/
public class StatisticalTest extends AbstractModelResource {
// Logging
Logger logger = LoggerFactory.getLogger(StatisticalTest.class);
/**
* Constructor
*
* @deprecated
*/
public StatisticalTest() {
super.init(null, null, null, null, null,
STATISTICALTEST_RE, STATISTICALTEST_PATH);
}
/**
* Constructor
*
* @deprecated
*/
public StatisticalTest(final String apiUser, final String apiKey) {
super.init(apiUser, apiKey, null, null, null,
STATISTICALTEST_RE, STATISTICALTEST_PATH);
}
/**
* Constructor
*
* @deprecated
*/
public StatisticalTest(final String apiUser, final String apiKey,
final CacheManager cacheManager) {
super.init(apiUser, apiKey, null, null, null,
STATISTICALTEST_RE, STATISTICALTEST_PATH);
}
/**
* Constructor
*
*/
public StatisticalTest(final BigMLClient bigmlClient,
final String apiUser, final String apiKey,
final String project, final String organization,
final CacheManager cacheManager) {
super.init(bigmlClient, apiUser, apiKey, project, organization,
cacheManager, STATISTICALTEST_RE, STATISTICALTEST_PATH);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy