vastorbit.VastFrame.count¶
- VastFrame.count(columns: Annotated[str | list[str], 'STRING representing one column or a list of columns'] | None = None, **agg_kwargs) TableSample¶
This operation aggregates the VastFrame using the
COUNTaggregation, providing the count of non-missing values for specified columns. This is valuable for assessing data completeness and quality.- Parameters:
columns (SQLColumns, optional) – List of the VastColumns names. If empty, all VastColumns are used.
**agg_kwargs – Any optional parameter to pass to the Aggregate function.
- Returns:
result.
- Return type:
Examples
For this example, we will use the following dataset:
import vastorbit as vo data = vo.VastFrame( { "x": [1, 2, 4, 9, 10, 15, 20, 22], "y": [1, 2, 1, 2, 1, 1, 2, 1], "z": [10, 12, 2, 1, 9, 8, 1, 3], } )
Now, let`s calculate the count for specific columns.
data.count( columns = ["x", "y", "z"], )
count "x" 8.0 "y" 8.0 "z" 8.0 Rows: 1-3 | Columns: 2Note
All the calculations are pushed to the database.
Hint
For more precise control, please refer to the
aggregatemethod.See also
VastColumn.count(): Count for a specific column.VastFrame.count_percent(): Count Percent for particular columns.