DataFrameDataExtensions.WriteRData Method

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 10.6.0

Overload List

WriteRData<R, C>(DataFrame<R, C>, Stream, String, Boolean, Boolean)

C#
public static void WriteRData<R, C>(
	this DataFrame<R, C> dataFrame,
	Stream stream,
	string name = "df",
	bool compress = true,
	bool ascii = false
)

Parameters

dataFrame  DataFrame<R, C>
 
stream  Stream
 
name  String  (Optional)
 
compress  Boolean  (Optional)
 
ascii  Boolean  (Optional)
 

Type Parameters

R
C

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DataFrame<R, C>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

WriteRData<R, C>(DataFrame<R, C>, String, String, Boolean, Boolean)

C#
public static void WriteRData<R, C>(
	this DataFrame<R, C> dataFrame,
	string path,
	string name = "df",
	bool compress = true,
	bool ascii = false
)

Parameters

dataFrame  DataFrame<R, C>
 
path  String
 
name  String  (Optional)
 
compress  Boolean  (Optional)
 
ascii  Boolean  (Optional)
 

Type Parameters

R
C

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DataFrame<R, C>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also