Click or drag to resize
FrameExtensionsFillMissingTRowKey, TColumnKey, T Method (FrameTRowKey, TColumnKey, T)
Fill missing values of a given type in the frame with a constant value. The operation is only applied to columns (series) that contain values of the same type as the provided filling value. The operation does not attempt to convert between numeric values (so a series containing `float` will not be converted to a series of `int`). ## Parameters - `frame` - An input data frame that is to be filled - `value` - A constant value that is used to fill all missing values [category:Missing values]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<TRowKey, TColumnKey> FillMissing<TRowKey, TColumnKey, T>(
	this Frame<TRowKey, TColumnKey> frame,
	T value
)

Parameters

frame
Type: DeedleFrameTRowKey, TColumnKey

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

value
Type: T

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

Type Parameters

TRowKey
TColumnKey
T

Return Value

Type: FrameTRowKey, TColumnKey

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

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type FrameTRowKey, TColumnKey. 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