File tree 7 files changed +13
-7
lines changed
7 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ looking for a quick way to help out.
19
19
...
20
20
```
21
21
22
- - Include the full version string of pandas and it's dependencies. In recent (>0.12) versions
22
+ - Include the full version string of pandas and its dependencies. In recent (>0.12) versions
23
23
of pandas you can use a built in function:
24
24
25
25
``` python
Original file line number Diff line number Diff line change @@ -87,6 +87,12 @@ or `pip`:
87
87
pip install pandas
88
88
```
89
89
90
+ or ` conda ` :
91
+
92
+ ``` sh
93
+ conda install pandas
94
+ ```
95
+
90
96
## Dependencies
91
97
- [ NumPy] ( http://www.numpy.org ) : 1.7.0 or higher
92
98
- [ python-dateutil] ( http://labix.org/python-dateutil ) : 1.5 or higher
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Options and Settings
15
15
16
16
Overview
17
17
--------
18
- pandas has an options system that lets you customize some aspects of it's behaviour,
18
+ pandas has an options system that lets you customize some aspects of its behaviour,
19
19
display-related options being those the user is most likely to adjust.
20
20
21
21
Options have a full "dotted-style", case-insensitive name (e.g. ``display.max_rows ``),
@@ -291,7 +291,7 @@ display.expand_frame_repr True Whether to print out the full DataFrame
291
291
multiple lines, `max_columns ` is
292
292
still respected, but the output will
293
293
wrap-around across multiple "pages"
294
- if it's width exceeds `display.width `.
294
+ if its width exceeds `display.width `.
295
295
display.float_format None The callable should accept a floating
296
296
point number and return a string with
297
297
the desired format of the number.
Original file line number Diff line number Diff line change @@ -699,7 +699,7 @@ def f(c):
699
699
if v is None or is_integer (v ):
700
700
return v
701
701
702
- # warn if its a convertible float
702
+ # warn if it's a convertible float
703
703
if v == int (v ):
704
704
warnings .warn ("slice indexers when using iloc should be integers "
705
705
"and not floating point" ,FutureWarning )
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ cdef class Packer(object):
112
112
* *encoding* - Convert unicode to bytes with this encoding. (default: 'utf-8')
113
113
* *unicode_errors* - Error handler for encoding unicode. (default: 'strict')
114
114
* *use_single_float* - Use single precision float type for float. (default: False)
115
- * *autoreset* - Reset buffer after each pack and return it's content as `bytes`. (default: True).
115
+ * *autoreset* - Reset buffer after each pack and return its content as `bytes`. (default: True).
116
116
If set this to false, use `bytes()` to get content and `.reset()` to clear buffer.
117
117
"""
118
118
cdef msgpack_packer pk
Original file line number Diff line number Diff line change @@ -1039,7 +1039,7 @@ def test_transform_select_columns(self):
1039
1039
def test_transform_exclude_nuisance (self ):
1040
1040
1041
1041
# this also tests orderings in transform between
1042
- # series/frame to make sure its consistent
1042
+ # series/frame to make sure it's consistent
1043
1043
expected = {}
1044
1044
grouped = self .df .groupby ('A' )
1045
1045
expected ['C' ] = grouped ['C' ].transform (np .mean )
Original file line number Diff line number Diff line change @@ -3717,7 +3717,7 @@ def random_text(nobs=100):
3717
3717
self .assertIsNotNone (df .is_copy )
3718
3718
df .loc [:,'letters' ] = df ['letters' ].apply (str .lower )
3719
3719
3720
- # should be ok even though its a copy!
3720
+ # should be ok even though it's a copy!
3721
3721
self .assertIsNone (df .is_copy )
3722
3722
df ['letters' ] = df ['letters' ].apply (str .lower )
3723
3723
self .assertIsNone (df .is_copy )
You can’t perform that action at this time.
0 commit comments