Skip to content

Commit

Permalink
Table: update Contents.m
Browse files Browse the repository at this point in the history
  • Loading branch information
dlegland committed Dec 21, 2020
1 parent af6751e commit 61b53a0
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions matStats/@Table/Contents.m
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
% Table is a class for manipulating data tables.
%
%
% Table creation
% Table creation and I/O
% Table - Class for data table with named rows and columns.
% create - Create a new data table.
% read - Read a file containing table data.
% write - Write a datatable into a file.
%
% Table display and information
% info - Display short summary of a data table.
Expand Down Expand Up @@ -66,8 +68,12 @@
% groupStats - Compute basic statistics for each level of a group.
% paragons - Find paragon for each level of a group.
%
% Display groups
% Clustering and multi-variate analysis
% kmeans - K-means clustering of the data table.
% cluster - Compute cluster indices in data using Hierarchical clustering.
% nmf - Non-negative matrix factorization of a data table.
%
% Display groups
% scatterGroup - Scatter plot individuals grouped by classes.
% scatterGroup3d - Scatter plot individuals grouped by classes.
% plotGroups - Display table data ordered by their group levels.
Expand All @@ -87,10 +93,6 @@
% rowNames - Return the names of the rows in table.
% createRowNames - Create default row names for table.
%
% File I/O
% read - Read a file containing table data.
% write - Write a datatable into a file.
%
% Utility functions
% getValue - Returns the value for the given row and column.
% addColumn - Add a new column to the data table.
Expand All @@ -99,7 +101,6 @@
% findClosestPoint - Find the index of the row with closest coordinates.
% unique - Returns unique values in data tables.
% bsxfun - Binary Singleton Expansion Function for Tables.
% bsxfun - Binary Singleton Expansion Function for Tables.
% concatFiles - Concatenate a list of files containing tables into new a file.
% printLatex - Print content of a table as a latex tabular.
% numel - Overload default behaviour for the numel function.
Expand Down Expand Up @@ -130,8 +131,8 @@
% floor - Floor values in the table.
% exp - Exponential of table values.
% log - Logarithm of table values.
% log10 - Decimal logarithm of table values.
% log2 - Binary logarithm of table values.
% log10 - Decimal logarithm of table values.
% max - Put the max of each column in a new table.
% mean - Compute the mean of table columns.
% median - Put the median of each column in a new table.
Expand Down Expand Up @@ -173,8 +174,6 @@

% Deprecated


% Not yet integrated



0 comments on commit 61b53a0

Please sign in to comment.