Uses of Class org.statcato.spreadsheet.Cell
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.statcato.spreadsheet.Cell";
}
}
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
PREV
NEXT
FRAMES
NO FRAMES
All Classes
Uses of Classorg.statcato.spreadsheet.Cell
Packages that use Cell
org.statcato.random
Provides classes for generating random samples.
org.statcato.spreadsheet
Provides classes for spreadsheets.
org.statcato.statistics
Provides classes and interfaces for basic statistical functions and probability distributions.
org.statcato.statistics.inferential.nonparametrics
Provides classes pertaining to nonparametric statistics.
org.statcato.utils
Provides classes containing common utilities and helper functions.
Uses of Cell in org.statcato.random
Methods in org.statcato.random that return Cell
Cell
SampleFromVector.nextSample()
Constructor parameters in org.statcato.random with type arguments of type Cell
SampleFromVector(java.util.Vector<Cell> vector,
boolean replace)
Uses of Cell in org.statcato.spreadsheet
Methods in org.statcato.spreadsheet that return Cell
Cell
Spreadsheet.getValueAt(int row,
int col)
Returns the value at the given row and column numbers.
Methods in org.statcato.spreadsheet that return types with arguments of type Cell
java.util.Vector<Cell>
Spreadsheet.getColumn(int col)
Returns the column at the given column number.
java.util.Vector<Cell>
SpreadsheetModel.getColumn(int col)
Returns the vector of cells in the given column number.
java.util.Vector<Cell>
Spreadsheet.getRow(int row)
Returns the row at the given row number.
java.util.Vector<Cell>
SpreadsheetModel.getRow(int row)
Returns the vector of cells in the given row number.
java.util.Vector<java.util.Vector<Cell>>
Spreadsheet.getRowsWithDataAtGivenColumns(int[] columns)
Returns the rows containing data at the given columns.
Methods in org.statcato.spreadsheet with parameters of type Cell
boolean
Cell.equals(Cell cell)
Returns true iff the given cell object is equal to this object.
Method parameters in org.statcato.spreadsheet with type arguments of type Cell
void
Spreadsheet.setCellColumn(int column,
java.util.Vector<Cell> data)
Sets the column at the given column number to the given vector of
Cells.
void
SpreadsheetModel.setCellColumn(int column,
java.util.Vector<Cell> data)
Sets the contents of the given column to the given cell vector.
void
Spreadsheet.setCellRow(int row,
java.util.Vector<Cell> data)
Set the row at the given row number to the given vector of cells.
Uses of Cell in org.statcato.statistics
Constructor parameters in org.statcato.statistics with type arguments of type Cell
CrossTabulation(java.util.Vector<java.util.Vector<Cell>> values,
java.util.Vector<java.lang.String> dimensions)
Constructor.
Uses of Cell in org.statcato.statistics.inferential.nonparametrics
Constructor parameters in org.statcato.statistics.inferential.nonparametrics with type arguments of type Cell
RunsTest(java.util.Vector<Cell> vector,
java.lang.String cat1,
java.lang.String cat2,
double significance)
Constructor, given a vector of Cell containing data of two categories,
the two categories, and significance level.
Uses of Cell in org.statcato.utils
Methods in org.statcato.utils that return types with arguments of type Cell
static java.util.Vector<Cell>
HelperFunctions.removeEndingEmptyCells(java.util.Vector<Cell> vector)
Returns a copy of a vector of Double in which all the null elements
at the end are removed.
static java.util.Vector<Cell>
HelperFunctions.removeNullCells(java.util.Vector<Cell> numbers)
Returns a copy of a vector of Cell in which all the null elements
are moved.
static java.util.Vector<Cell>
OrderingFunctions.sortColumnVector(java.util.Vector<Cell> vec,
java.util.Vector<Cell> byVec,
boolean ascending)
Sorts a vector of Cell based on another vector of Cell in the given order.
static java.util.Vector<java.util.Vector<Cell>>
OrderingFunctions.sortVectors(java.util.Vector<java.util.Vector<Cell>> vecs,
java.util.Vector<java.lang.Boolean> orders)
Sorts a set of vectors in place, from the last vector in the set to the
first.
Method parameters in org.statcato.utils with type arguments of type Cell
static java.lang.Object[]
HelperFunctions.ComputeCategoryFrequency(java.util.Vector<Cell> vec)
Given a vector of cells, computes the frequency of each category
present in the vector.
static java.util.Vector<java.lang.String>
HelperFunctions.ConvertCellVectorToStringVector(java.util.Vector<Cell> vector)
static java.util.Vector<java.lang.Double>
HelperFunctions.ConvertInputVectorToDoubles(java.util.Vector<Cell> vector)
Converts a vector of Cell to a vector of Double.
static java.lang.Object[]
HelperFunctions.ConvertInputVectorToNumbers(java.util.Vector<Cell> vector)
Converts a vector of Cell to a vector of numbers.
static java.lang.Object[]
HelperFunctions.ConvertInputVectorToNumbers2(java.util.Vector<Cell> vector)
Converts a vector of Cell to a vector of numbers.
static void
HelperFunctions.printVectors(java.util.Vector<java.util.Vector<Cell>> vec)
Prints the contents of a vector of vectors to the standard output.
static java.util.Vector<java.lang.Integer>
OrderingFunctions.rankColumnVector(java.util.Vector<Cell> vec,
boolean ascending)
Given a vector of Cells and the sort order, return a vector of Integers
that are the ranks of the Cells.
static java.util.Vector<Cell>
HelperFunctions.removeEndingEmptyCells(java.util.Vector<Cell> vector)
Returns a copy of a vector of Double in which all the null elements
at the end are removed.
static java.util.Vector<Cell>
HelperFunctions.removeNullCells(java.util.Vector<Cell> numbers)
Returns a copy of a vector of Cell in which all the null elements
are moved.
static java.util.Vector<Cell>
OrderingFunctions.sortColumnVector(java.util.Vector<Cell> vec,
java.util.Vector<Cell> byVec,
boolean ascending)
Sorts a vector of Cell based on another vector of Cell in the given order.
static java.util.Vector<Cell>
OrderingFunctions.sortColumnVector(java.util.Vector<Cell> vec,
java.util.Vector<Cell> byVec,
boolean ascending)
Sorts a vector of Cell based on another vector of Cell in the given order.
static java.util.Vector<java.util.Vector<Cell>>
OrderingFunctions.sortVectors(java.util.Vector<java.util.Vector<Cell>> vecs,
java.util.Vector<java.lang.Boolean> orders)
Sorts a set of vectors in place, from the last vector in the set to the
first.
static java.lang.Object[]
HelperFunctions.splitValuesVector(java.util.Vector<Cell> Values)
Given a vector of two possible values,
separate the vector of values corresponding to the labels into two vectors.
static java.lang.Object[]
HelperFunctions.splitValuesVectorByLabels(java.util.Vector<Cell> Labels,
java.util.Vector<Cell> Values)
Given a vector of two possible population labels and a vector of values,
separate the vector of values corresponding to the labels into two vectors.
static java.lang.Object[]
HelperFunctions.splitValuesVectorByLabels(java.util.Vector<Cell> Labels,
java.util.Vector<Cell> Values)
Given a vector of two possible population labels and a vector of values,
separate the vector of values corresponding to the labels into two vectors.
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
PREV
NEXT
FRAMES
NO FRAMES
All Classes
Wyszukiwarka
Podobne podstrony:
cellRavi CellCell CycleApoptosis Induction, Cell Cycle Arrest and in Vitro Anticancer Activitycellcellcell4 Active Behavior of the Cell Membranecell bg changer[15]Reactive oxygen species, cell signaling, and cell injuryCancer Cell MetabolismSingle Cell ProteinDesign Of A 10 Kw Inverter For A Fuel Cell(1)więcej podobnych podstron