Back to Numerical Arrays (NumPy)
np.genfromtxt
Load data from a text file with handling for missing values.
Syntax
np.genfromtxt(file, options?)
Description
Load data from a text file with handling for missing values. More sophisticated than loadtxt, supports missing value replacement.
Parameters
| Name | Description |
|---|---|
| file | - File source |
| options(optional) | - Parsing options |
Returns
Promise<NDArray>