 | DataFrameGetColumnDictionary(Int32, Int32) Method |
Returns a dictionary for values in the given column. The dictionary keys are
taken from the specified key column.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic IDictionary GetColumnDictionary(
int keyColIndex,
int valColIndex
)
Public Function GetColumnDictionary (
keyColIndex As Integer,
valColIndex As Integer
) As IDictionary
public:
IDictionary^ GetColumnDictionary(
int keyColIndex,
int valColIndex
)
member GetColumnDictionary :
keyColIndex : int *
valColIndex : int -> IDictionary
Parameters
- keyColIndex Int32
- The key column index.
- valColIndex Int32
- The value column index.
Return Value
IDictionaryA dictionary of key-value pairs.
See Also