Skip to content

Commit

Permalink
consistent datestring format to fix parsing error
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayThorve committed Nov 11, 2023
1 parent 24d3465 commit 32438a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/user_guide/charts/widgets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Example
import cudf
from cuxfilter import charts, DataFrame

cux_df = DataFrame.from_dataframe(cudf.DataFrame({'time':['2020-01-01', '2020-01-10 01', '2020-02-20 22']}))
cux_df = DataFrame.from_dataframe(cudf.DataFrame({'time':['2020-01-01', '2020-01-10', '2020-02-20']}))
cux_df.data['time'] = cudf.to_datetime(cux_df.data['time'])

date_range_slider = charts.date_range_slider('time')
Expand Down

0 comments on commit 32438a1

Please sign in to comment.