Click or drag to resize
FrameModuleFillErrorsWithT, R, C Method
Fills all error cases of a `tryval<'T>` value in a data frame with the specified `value`. The function takes all columns of type `tryval<'T>` and uses `Series.fillErrorsWith` to fill the error values with the specified default value. [category:Processing frames with exceptions]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<R, C> FillErrorsWith<T, R, C>(
	T value,
	Frame<R, C> frame
)

Parameters

value
Type: T

[Missing <param name="value"/> documentation for "M:Deedle.FrameModule.FillErrorsWith``3(``0,Deedle.Frame{``1,``2})"]

frame
Type: DeedleFrameR, C

[Missing <param name="frame"/> documentation for "M:Deedle.FrameModule.FillErrorsWith``3(``0,Deedle.Frame{``1,``2})"]

Type Parameters

T
R
C

Return Value

Type: FrameR, C

[Missing <returns> documentation for "M:Deedle.FrameModule.FillErrorsWith``3(``0,Deedle.Frame{``1,``2})"]

See Also