Uses of Interface
ubic.basecode.dataStructure.matrix.ObjectMatrix
Packages that use ObjectMatrix
Package
Description
-
Uses of ObjectMatrix in ubic.basecode.dataStructure.matrix
Classes in ubic.basecode.dataStructure.matrix that implement ObjectMatrixModifier and TypeClassDescriptionclassCompressedBitMatrix<R,C> Named compressed sparse bit matrix.classObjectMatrixImpl<R,C, V> Matrix that can hold any type of objectclassStringMatrix<R,C> A NamedMatrix containing String objects.Methods in ubic.basecode.dataStructure.matrix that return ObjectMatrixModifier and TypeMethodDescriptionObjectMatrix<R, C, double[]> CompressedBitMatrix.subset(int startRow, int startCol, int numRow, int numCol) ObjectMatrix<R, C, V> ObjectMatrix.subset(int startRow, int startCol, int numRow, int numCol) ObjectMatrix<R, C, V> ObjectMatrixImpl.subset(int startRow, int startCol, int numRow, int numCol) StringMatrix.subset(int startRow, int startCol, int numRow, int numCol) ObjectMatrix<R, C, double[]> CompressedBitMatrix.subsetColumns(List<C> columns) ObjectMatrix<R, C, V> ObjectMatrix.subsetColumns(List<C> columns) StringMatrix.subsetColumns(List<C> columns) -
Uses of ObjectMatrix in ubic.basecode.math.linearmodels
Methods in ubic.basecode.math.linearmodels with parameters of type ObjectMatrixModifier and TypeMethodDescriptionvoidDesignMatrix.add(ObjectMatrix<String, String, Object> sampleInfo) Append additional factors/covariates to thisConstructors in ubic.basecode.math.linearmodels with parameters of type ObjectMatrixModifierConstructorDescriptionDesignMatrix(ObjectMatrix<String, String, ?> sampleInfo, boolean intercept) DesignMatrix(ObjectMatrix<String, String, ? extends Object> sampleInfo) DesignMatrix(ObjectMatrix<String, String, Object> design, boolean intercept, boolean strict) LeastSquaresFit(ObjectMatrix<String, String, Object> sampleInfo, DenseDoubleMatrix2D data) LeastSquaresFit(ObjectMatrix<String, String, Object> sampleInfo, DenseDoubleMatrix2D data, boolean interactions) LeastSquaresFit(ObjectMatrix<String, String, Object> design, DoubleMatrix<String, String> b) NamedMatrix allows easier handling of the results.LeastSquaresFit(ObjectMatrix<String, String, Object> design, DoubleMatrix<String, String> data, boolean interactions) NamedMatrix allows easier handling of the results. -
Uses of ObjectMatrix in ubic.basecode.util.r
Methods in ubic.basecode.util.r that return ObjectMatrixModifier and TypeMethodDescriptionAbstractRClient.dataFrameEval(String command) RClient.dataFrameEval(String command) Evaluate a command that returns a dataFrameMethods in ubic.basecode.util.r with parameters of type ObjectMatrixModifier and TypeMethodDescriptionAbstractRClient.dataFrame(ObjectMatrix<String, String, Object> matrix) RClient.dataFrame(ObjectMatrix<String, String, Object> matrix) Convert an object matrix into an R data frame.AbstractRClient.linearModel(double[] data, ObjectMatrix<String, String, Object> d) RClient.linearModel(double[] data, ObjectMatrix<String, String, Object> design)