-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ENH: Add fill_value option to resample() #3715
Labels
API Design
Dtype Conversions
Unexpected or buggy dtype conversions
Missing-data
np.nan, pd.NaT, pd.NA, dropna, isnull, interpolate
Resample
resample method
Milestone
Comments
wouldn't this be the right way to do this? |
@nchmura4 that is a way, but this issue is about filling before reindexing, like e.g. compare this
|
got it. thanks for the clarification! |
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Nov 25, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Nov 29, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Nov 30, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 2, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 2, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 2, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 2, 2016
This reverts commit b9ffc14.
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 2, 2016
This reverts commit 6f3fed3.
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 3, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 3, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 3, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 3, 2016
This reverts commit b9ffc14.
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 3, 2016
This reverts commit 6f3fed3.
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 3, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 3, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 3, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 3, 2016
This reverts commit b9ffc14.
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 3, 2016
This reverts commit 6f3fed3.
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 21, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 21, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 21, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 21, 2016
This reverts commit b9ffc14.
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 21, 2016
This reverts commit 6f3fed3.
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 31, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 31, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 31, 2016
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 31, 2016
This reverts commit b9ffc14.
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Dec 31, 2016
This reverts commit 6f3fed3.
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Jan 18, 2017
nchmura4
added a commit
to nchmura4/pandas
that referenced
this issue
Jan 18, 2017
AnkurDedania
pushed a commit
to AnkurDedania/pandas
that referenced
this issue
Mar 21, 2017
closes pandas-dev#3715 closes pandas-dev#14791
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
API Design
Dtype Conversions
Unexpected or buggy dtype conversions
Missing-data
np.nan, pd.NaT, pd.NA, dropna, isnull, interpolate
Resample
resample method
see also #3707
Add a
fill_value
option toresample()
so that it is possible to resample aTimeSeries
without creatingNaN
values. If the series is an int dtype and an int is passed tofill_value
, it should be possible to resample the series without casting the values to floats.The text was updated successfully, but these errors were encountered: