dask: Add missing methods to Series
Pandas methods like to_timestamp
are trivial to add to dask.dataframe. We should go through the API and verify that we’ve implemented everything like this that is more-or-less trivial to do.
About this issue
- Original URL
- State: open
- Created 8 years ago
- Comments: 23 (14 by maintainers)
Commits related to this issue
- add applymap (#1259) — committed to JamesJeffryes/dask by JamesJeffryes 8 years ago
- add DataFrame.round (#1259) — committed to JamesJeffryes/dask by JamesJeffryes 8 years ago
- add series.round (#1259) — committed to JamesJeffryes/dask by JamesJeffryes 8 years ago
- add dataframe.to_timestamp (#1259) — committed to JamesJeffryes/dask by JamesJeffryes 8 years ago
- add dataframe and series elementwise comparisons. (#1259) Series tests not yet passing due to unexpected fill_values error. — committed to JamesJeffryes/dask by JamesJeffryes 8 years ago
- add applymap (#1259) — committed to mrocklin/dask by JamesJeffryes 8 years ago
- add DataFrame.round (#1259) — committed to mrocklin/dask by JamesJeffryes 8 years ago
- add series.round (#1259) — committed to mrocklin/dask by JamesJeffryes 8 years ago
- add dataframe.to_timestamp (#1259) — committed to mrocklin/dask by JamesJeffryes 8 years ago
- add dataframe and series elementwise comparisons. (#1259) Series tests not yet passing due to unexpected fill_values error. — committed to mrocklin/dask by JamesJeffryes 8 years ago
- Dataframe elemwise (#1660) * add applymap (#1259) * add DataFrame.round (#1259) * add series.round (#1259) * add dataframe.to_timestamp (#1259) * add dataframe and series elementwise comp... — committed to dask/dask by mrocklin 8 years ago
- Dataframe elemwise (#1660) * add applymap (#1259) * add DataFrame.round (#1259) * add series.round (#1259) * add dataframe.to_timestamp (#1259) * add dataframe and series elementwise comparisons.... — committed to dask/dask by JamesJeffryes 8 years ago
- Add Series.dot method to dataframe module Ref: #1259 — committed to Madhu94/dask by Madhu94 3 years ago
- Add Series.dot method to dataframe module Ref: #1259 — committed to Madhu94/dask by Madhu94 3 years ago
- Add Series.dot method to dataframe module Ref: #1259 — committed to Madhu94/dask by Madhu94 3 years ago
- Add Series.dot method to dataframe module Ref: #1259 — committed to Madhu94/dask by Madhu94 3 years ago
- Add Series.dot method to dataframe module Ref: #1259 — committed to Madhu94/dask by Madhu94 3 years ago
- Add Series.dot method to dataframe module (#7236) * Add Series.dot method to dataframe module Ref: #1259 * Add meta kwarg to Series.dot method * Add validation if other operand is not dask s... — committed to dask/dask by Madhu94 3 years ago
- Add axes property to DataFrame and Series For Issue #1259 — committed to dotNomad/dask by dotNomad 3 years ago
I would expect
axes()
to return a list containing:df.index
(which is adask.dataframe Index
)df.columns
(which is apandas Index
)I believe this ticket was closed by mistake while merging https://github.com/dask/dask/pull/7236. Can this be reopened?