Skip to content

Commit

Permalink
DOC: fixup old whatsnew for dtype coercing change (pandas-dev#21456) (p…
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche authored and victor committed Sep 30, 2018
1 parent d3ce5bb commit 72a3f52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/whatsnew/v0.11.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Numeric dtypes will propagate and can coexist in DataFrames. If a dtype is passe
df1.dtypes
df2 = DataFrame(dict( A = Series(randn(8),dtype='float16'),
B = Series(randn(8)),
C = Series(randn(8),dtype='uint8') ))
C = Series(range(8),dtype='uint8') ))
df2
df2.dtypes

Expand Down

0 comments on commit 72a3f52

Please sign in to comment.