You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add how-to documentation for checking counts and cardinality.
Should demonstrate:
using len(data) to validate count of data elements
using collections.Counter(data) to validate counts per value
Should also mention that cardinality is a descriptive statistic that can be calculated with many other tools that a developer might use (df[0].applymap(bool).sum(), select('A').filter().count(), etc.).
The text was updated successfully, but these errors were encountered:
Add how-to documentation for checking counts and cardinality.
Should demonstrate:
len(data)
to validate count of data elementscollections.Counter(data)
to validate counts per valueShould also mention that cardinality is a descriptive statistic that can be calculated with many other tools that a developer might use (
df[0].applymap(bool).sum()
,select('A').filter().count()
, etc.).The text was updated successfully, but these errors were encountered: