 | DataFrameToString(Boolean, Boolean, String) Method |
Returns a formatted string representation of this data frame.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic string ToString(
bool exportHeader,
bool exportRowKeys,
string delimiter
)
Public Function ToString (
exportHeader As Boolean,
exportRowKeys As Boolean,
delimiter As String
) As String
public:
String^ ToString(
bool exportHeader,
bool exportRowKeys,
String^ delimiter
)
member ToString :
exportHeader : bool *
exportRowKeys : bool *
delimiter : string -> string
Parameters
- exportHeader Boolean
- A boolean value indicated whether or not the returned string should
include column headers.
- exportRowKeys Boolean
- A boolean value indicated whether or not the returned string should
include row keys.
- delimiter String
- The column delimiter.
Return Value
StringA formatted string representation of this data frame.
RemarksFormatting uses the column formatting which by default is StatsSettings.NumericFormat,
StatsSettings.IntegerFormat and StatsSettings.DateTimeFormat.
See Also