Creates a new frame table from a file of comma-separated values.
Namespace:
Meta.Numerics.Data
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static FrameTable FromCsv(
TextReader reader
)
Public Shared Function FromCsv (
reader As TextReader
) As FrameTable
public:
static FrameTable^ FromCsv(
TextReader^ reader
)
static member FromCsv :
reader : TextReader -> FrameTable
Parameters
- reader
- Type: System.IOTextReader
A reader positioned at the beginning of the file.
Return Value
Type:
FrameTableA new data frame with data from the file.
Remarks The column names are taken from the first line of the file.
The storage type of each column is inferred from the types of objects
encountered are the frame table is constructed.
See Also