Exemplo n.º 1
0
 public static StreamingDataFrame ReadCsv(string[] filenames,
                                          char sep          = ',', bool header = true,
                                          string[] names    = null, ColumnType[] dtypes = null,
                                          int nrows         = -1, int guess_rows        = 10,
                                          Encoding encoding = null, bool useThreads     = true,
                                          bool index        = false, IHost host         = null)
 {
     return(new StreamingDataFrame(DataFrameIO.ReadCsvToTextLoader(filenames, sep, header, names, dtypes, nrows, guess_rows,
                                                                   encoding, useThreads, index, host)));
 }