PLearn 0.1
|
#include "vmatmain.h"
#include <commands/PLearnCommands/PLearnCommandRegistry.h>
#include <plearn/base/general.h>
#include <plearn/base/stringutils.h>
#include <plearn/base/lexical_cast.h>
#include <plearn/math/StatsCollector.h>
#include <plearn/math/stats_utils.h>
#include <plearn/vmat/ConcatColumnsVMatrix.h>
#include <plearn/vmat/SelectColumnsVMatrix.h>
#include <plearn/vmat/SubVMatrix.h>
#include <plearn/vmat/VMatLanguage.h>
#include <plearn/vmat/VVMatrix.h>
#include <plearn/vmat/VMat.h>
#include <plearn/vmat/SelectRowsFileIndexVMatrix.h>
#include <plearn/math/TMat_maths.h>
#include <plearn/db/getDataSet.h>
#include <plearn/display/Gnuplot.h>
#include <plearn/io/openFile.h>
#include <plearn/io/load_and_save.h>
#include <plearn/base/HelpSystem.h>
#include <plearn/base/PDate.h>
#include <algorithm>
#include <iostream>
#include <iomanip>
Go to the source code of this file.
Namespaces | |
namespace | PLearn |
< for swap | |
Functions | |
static void | PLearn::save_vmat_as_csv (VMat source, ostream &destination, bool skip_missings, int precision=12, string delimiter=",", bool verbose=true, bool convert_date=false) |
This function converts a VMat to a CSV (comma-separated value) file with the given name. | |
static void | PLearn::save_vmat_as_arff (VMat source, ostream &destination, TVec< string > &date_columns, bool skip_missings, int precision=12, bool verbose=true) |
This function converts a VMat to a ARFF (Attribute-Relation File Format) file with the given name. | |
int | PLearn::print_diff (ostream &out, VMat m1, VMat m2, double tolerance, int verbose) |
Prints where m1 and m2 differ by more than tolerance returns the number of such differences, or -1 if the sizes differ. | |
void | PLearn::interactiveDisplayCDF (const Array< VMat > &vmats) |
void | PLearn::displayBasicStats (VMat vm) |
void | PLearn::printDistanceStatistics (VMat vm, int inputsize) |
void | PLearn::plotVMats (char *defs[], int ndefs) |
VMat | PLearn::getVMat (const PPath &source, const PPath &indexf) |
int | PLearn::vmatmain (int argc, char **argv) |