File tree 6 files changed +6
-6
lines changed
6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 293
293
'import numpy as np' ,
294
294
'import pandas as pd' ,
295
295
# This ensures correct rendering on system with console encoding != utf8
296
- # (windows). It forces pandas to encode it's output reprs using utf8
296
+ # (windows). It forces pandas to encode its output reprs using utf8
297
297
# whereever the docs are built. The docs' target is the browser, not
298
298
# the console, so this is fine.
299
299
'pd.options.display.encoding="utf8"'
Original file line number Diff line number Diff line change 121
121
: boolean
122
122
Whether to print out the full DataFrame repr for wide DataFrames across
123
123
multiple lines, `max_columns` is still respected, but the output will
124
- wrap-around across multiple "pages" if it's width exceeds `display.width`.
124
+ wrap-around across multiple "pages" if its width exceeds `display.width`.
125
125
"""
126
126
127
127
pc_show_dimensions_doc = """
Original file line number Diff line number Diff line change @@ -471,7 +471,7 @@ def _repr_html_(self):
471
471
Return a html representation for a particular DataFrame.
472
472
Mainly for IPython notebook.
473
473
"""
474
- # qtconsole doesn't report it's line width, and also
474
+ # qtconsole doesn't report its line width, and also
475
475
# behaves badly when outputting an HTML table
476
476
# that doesn't fit the window, so disable it.
477
477
# XXX: In IPython 3.x and above, the Qt console will not attempt to
Original file line number Diff line number Diff line change @@ -971,7 +971,7 @@ def tail(self, n=5):
971
971
972
972
def _cumcount_array (self , arr = None , ** kwargs ):
973
973
"""
974
- arr is where cumcount gets it's values from
974
+ arr is where cumcount gets its values from
975
975
976
976
note: this is currently implementing sort=False (though the default is sort=True)
977
977
for groupby in general
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ def main():
178
178
print ("""
179
179
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
180
180
WARNING: this script uses git clean -f, running it on a repo with untracked files.
181
- It's recommended that you make a fresh clone and run from it's root directory.
181
+ It's recommended that you make a fresh clone and run from its root directory.
182
182
You must specify the -y argument to ignore this warning.
183
183
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
184
184
""" )
Original file line number Diff line number Diff line change 36
36
# in some cases then running vbench directly (think perf bisection).
37
37
#
38
38
# *please*, when you modify this script for whatever reason,
39
- # make sure you do not break it's functionality when running under older
39
+ # make sure you do not break its functionality when running under older
40
40
# pandas versions.
41
41
# Note that depreaction warnings are turned off in main(), so there's
42
42
# no need to change the actual code to supress such warnings.
You can’t perform that action at this time.
0 commit comments