public abstract class DescriptiveStatisticWeights extends DescriptiveStatistic
Operation |
Beginning Index |
Length of Subset |
Input/Output |
|||||
|---|---|---|---|---|---|---|---|---|
|
|
|
|
|||||
|
|
|
|
| Constructor and Description |
|---|
DescriptiveStatisticWeights() |
| Modifier and Type | Method and Description |
|---|---|
abstract double |
calculate(List<Double> list,
double[] weights)
Calculates the weighted statistic.
|
abstract double |
calculate(List<Double> list,
double[] weights,
int begin,
int length)
Calculates the weighted statistic of the values between the beginning and
ending indices.
|
Map<Well,Double> |
plate(Plate plate,
double[] weights)
Returns the weighted statistic for each plate well.
|
Map<Well,Double> |
plate(Plate plate,
double[] weights,
int begin,
int length)
Returns the weighted statistic for each plate well using the values between the
beginning and ending indices.
|
Map<Plate,Double> |
platesAggregated(Collection<Plate> collection,
double[] weights)
Returns the aggregated weighted statistic for each plate.
|
Map<Plate,Double> |
platesAggregated(Collection<Plate> collection,
double[] weights,
int begin,
int length)
Returns the aggregated weighted statistic for each plate using the values
between the indices.
|
Map<Plate,Double> |
platesAggregated(Plate[] array,
double[] weights)
Returns the aggregated weighted statistic for each plate.
|
Map<Plate,Double> |
platesAggregated(Plate[] array,
double[] weights,
int begin,
int length)
Returns the aggregated weighted statistic for each plate using the values
between the indices.
|
double |
platesAggregated(Plate plate,
double[] weights)
Returns the aggregated weighted statistic for the plate.
|
double |
platesAggregated(Plate plate,
double[] weights,
int begin,
int length)
Returns the aggregated weighted statistic for the plate using the values
between the indices.
|
Map<Well,Double> |
set(WellSet set,
double[] weights)
Returns the weighted statistic of each well in the well set.
|
Map<Well,Double> |
set(WellSet set,
double[] weights,
int begin,
int length)
Returns the weighted statistic of each well in the well set using the values
between the beginning and ending indices.
|
Map<WellSet,Double> |
setsAggregated(Collection<WellSet> collection,
double[] weights)
Returns the aggregated weighted statistic for each well set.
|
Map<WellSet,Double> |
setsAggregated(Collection<WellSet> collection,
double[] weights,
int begin,
int length)
Returns the aggregated weighted statistic for each well set using the values
between the indices.
|
Map<WellSet,Double> |
setsAggregated(WellSet[] array,
double[] weights)
Returns the aggregated weighted statistic for each well set.
|
Map<WellSet,Double> |
setsAggregated(WellSet[] array,
double[] weights,
int begin,
int length)
Returns the aggregated weighted statistic for each well set using the values
between the indices.
|
double |
setsAggregated(WellSet set,
double[] weights)
Returns the aggregated weighted statistic for the well set.
|
double |
setsAggregated(WellSet set,
double[] weights,
int begin,
int length)
Returns the aggregated weighted statistic for the well set using the values
between the indices.
|
double |
well(Well well,
double[] weights)
Returns the weighted well statistic.
|
double |
well(Well well,
double[] weights,
int begin,
int length)
Returns the well weighted statistic for the values between the beginning and
ending indices.
|
calculate, calculate, plate, plate, platesAggregated, platesAggregated, platesAggregated, platesAggregated, platesAggregated, platesAggregated, set, set, setsAggregated, setsAggregated, setsAggregated, setsAggregated, setsAggregated, setsAggregated, well, wellpublic Map<Well,Double> plate(Plate plate, double[] weights)
Plate - the platedouble[] - weights for the data setpublic Map<Well,Double> plate(Plate plate, double[] weights, int begin, int length)
Plate - the platedouble[] - weights for the data setint - beginning index of subsetint - length of subsetpublic double platesAggregated(Plate plate, double[] weights)
Plate - the platedouble[] - weights for the data setpublic Map<Plate,Double> platesAggregated(Collection<Plate> collection, double[] weights)
Collection - collection of platesdouble[] - weights for the data setpublic Map<Plate,Double> platesAggregated(Plate[] array, double[] weights)
PlateInteger[] - array of platesdouble[] - weights for the data setpublic double platesAggregated(Plate plate, double[] weights, int begin, int length)
Plate - the platedouble[] - weights for the data setint - beginning index of subsetint - length of subsetpublic Map<Plate,Double> platesAggregated(Collection<Plate> collection, double[] weights, int begin, int length)
Collection - collection of platesdouble[] - weights for the data setint - beginning index of subsetint - length of subsetpublic Map<Plate,Double> platesAggregated(Plate[] array, double[] weights, int begin, int length)
PlateInteger[] - array of platesdouble[] - weights for the data setint - beginning index of subsetint - length of subsetpublic Map<Well,Double> set(WellSet set, double[] weights)
WellSet - the well setdouble[] - weights for the data setpublic Map<Well,Double> set(WellSet set, double[] weights, int begin, int length)
WellSet - the well setdouble[] - weights for the data setint - beginning index of subsetint - length of subsetpublic double setsAggregated(WellSet set, double[] weights)
WellSet - the well setdouble[] - weights for the data setpublic Map<WellSet,Double> setsAggregated(Collection<WellSet> collection, double[] weights)
Collection - collection of well setsdouble[] - weights for the data setpublic Map<WellSet,Double> setsAggregated(WellSet[] array, double[] weights)
WellSetInteger[] - array of well setsdouble[] - weights for the data setpublic double setsAggregated(WellSet set, double[] weights, int begin, int length)
WellSet - the well setdouble[] - weights for the data setint - beginning index of subsetint - length of subsetpublic Map<WellSet,Double> setsAggregated(Collection<WellSet> collection, double[] weights, int begin, int length)
Collection - collection of well setsdouble[] - weights for the data setint - beginning index of subsetint - length of subsetpublic Map<WellSet,Double> setsAggregated(WellSet[] array, double[] weights, int begin, int length)
WellSetInteger[] - array of well setsdouble[] - weights for the data setint - beginning index of subsetint - length of subsetpublic double well(Well well, double[] weights)
Well - the welldouble[] - weights for the data setpublic double well(Well well, double[] weights, int begin, int length)
Well - the welldouble[] - weights for the data setint - beginning index of subsetint - length of the subsetpublic abstract double calculate(List<Double> list, double[] weights)
List - the listdouble[] - weights for the data setpublic abstract double calculate(List<Double> list, double[] weights, int begin, int length)
List - the listdouble[] - weights of the data setint - beginning index of subsetint - length of subsetCopyright © 2017. All rights reserved.