Writes the data frame with the specified name to the data stream.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public void Write<R, C>(
DataFrame<R, C> value,
string name
)
Public Sub Write(Of R, C) (
value As DataFrame(Of R, C),
name As String
)
public:
generic<typename R, typename C>
void Write(
DataFrame<R, C>^ value,
String^ name
)
member Write :
value : DataFrame<'R, 'C> *
name : string -> unit
Parameters
- value
- Type: Extreme.DataAnalysisDataFrameR, C
The data frame to write to the stream. - name
- Type: SystemString
The name of the matrix to read.
Type Parameters
- R
- The type of the row keys of the data frame.
- C
- The type of the column keys of the data frame.
Return Value
Type:
A data frame containing the data.
Reference