MissingRowsCols
POST api.scientificmicroservices.com/missingrowscols
Summarize where data is missing
MissingRowsCols processes an entire dataset, providing a summary of the percentage of missing values in each row and column.
The response is a json object with two lists ('rows' and 'columns') of key-pair objects. Rows and columns with no missing values are not included in the response.
Example usage in terminal
Input types allowed
Response fields
| Rows | |
| row | The zero-based index of the row that has missing data |
| pct_missing | The percentage of data in the row (indexed in the 'row' field) that is missing. |
| Columns | |
| column | The name of the column that has missing data |
| pct_missing | The percentage of data in the column (referenced in the 'column' field) that is missing. |