Skip to content
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

IntegerArray docs follow-up #22003

Closed
chris-b1 opened this issue Jul 20, 2018 · 0 comments
Closed

IntegerArray docs follow-up #22003

chris-b1 opened this issue Jul 20, 2018 · 0 comments
Labels
Docs Dtype Conversions Unexpected or buggy dtype conversions ExtensionArray Extending pandas with custom dtypes or arrays.
Milestone

Comments

@chris-b1
Copy link
Contributor

xref #21160

Make it clear that it is opt-in only, by passing/casting dtype. For example [24] and [27] are still float64

More clear separation from numpy dtype - worry that 'int64' vs 'Int64' will be especially confusing for new people? Consider a different name altogether? (NullableInt64?)

In [23]: s = pd.Series([1, 2, np.nan])

In [24]: s
Out[24]: 
0    1.0
1    2.0
2    NaN
dtype: float64

In [25]: s = pd.Series([1, 2, 3])

In [26]: s[2] = np.nan

In [27]: s
Out[27]: 
0    1.0
1    2.0
2    NaN
dtype: float64
@gfyoung gfyoung added Dtype Conversions Unexpected or buggy dtype conversions ExtensionArray Extending pandas with custom dtypes or arrays. Docs labels Jul 23, 2018
@jorisvandenbossche jorisvandenbossche added this to the 0.24.0 milestone Aug 14, 2018
TomAugspurger added a commit to TomAugspurger/pandas that referenced this issue Nov 10, 2018
TomAugspurger added a commit to TomAugspurger/pandas that referenced this issue Nov 10, 2018
@jreback jreback modified the milestones: 0.24.0, 0.24.1 Dec 9, 2018
TomAugspurger added a commit that referenced this issue Jan 1, 2019
* wip

* DOC: Integer NA

Closes #22003

* subsection

* update

* fixup

* add back construction for docs
Pingviinituutti pushed a commit to Pingviinituutti/pandas that referenced this issue Feb 28, 2019
* wip

* DOC: Integer NA

Closes pandas-dev#22003

* subsection

* update

* fixup

* add back construction for docs
Pingviinituutti pushed a commit to Pingviinituutti/pandas that referenced this issue Feb 28, 2019
* wip

* DOC: Integer NA

Closes pandas-dev#22003

* subsection

* update

* fixup

* add back construction for docs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Docs Dtype Conversions Unexpected or buggy dtype conversions ExtensionArray Extending pandas with custom dtypes or arrays.
Projects
None yet
Development

No branches or pull requests

4 participants