Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Vince7778 committed Aug 27, 2024
1 parent 6b2629c commit 44b4a79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daft/dataframe/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -2101,7 +2101,7 @@ def count(self, *cols: ColumnInputType) -> "DataFrame":
>>> import daft
>>> from daft import col
>>> df = daft.from_pydict({"foo": [1, None, None], "bar": [None, 2, 2], "baz": [3, 4, 5]})
>>> df.count().show()
>>> df.count().show() # equivalent to df.count("*").show()
╭────────╮
│ count │
│ --- │
Expand Down

0 comments on commit 44b4a79

Please sign in to comment.