Skip to content

Commit d60a849

Browse files
committed
Pandas
1 parent 69a44b3 commit d60a849

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3199,7 +3199,7 @@ y 2
31993199
```
32003200
* **Methods ffill(), interpolate() and fillna() accept argument 'inplace' that defaults to False.**
32013201
* **Last result has a hierarchical index. Use `'<Sr>[key_1, key_2]'` to get its values.**
3202-
* **Keys, indexes and bools can't be tuples because `'obj[x, y]'` becomes `'obj[(x, y)]'`.**
3202+
* **Keys/indexes/bools can't be tuples because `'obj[x, y]'` is converted to `'obj[(x, y)]'`.**
32033203

32043204
### DataFrame
32053205
**Table with labeled rows and columns.**

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2614,7 +2614,7 @@ <h3 id="format-2">Format</h3><div><h4 id="forstandardtypesizesandmanualalignment
26142614
<ul>
26152615
<li><strong>Methods ffill(), interpolate() and fillna() accept argument 'inplace' that defaults to False.</strong></li>
26162616
<li><strong>Last result has a hierarchical index. Use <code class="python hljs"><span class="hljs-string">'&lt;Sr&gt;[key_1, key_2]'</span></code> to get its values.</strong></li>
2617-
<li><strong>Keys, indexes and bools can't be tuples because <code class="python hljs"><span class="hljs-string">'obj[x, y]'</span></code> becomes <code class="python hljs"><span class="hljs-string">'obj[(x, y)]'</span></code>.</strong></li>
2617+
<li><strong>Keys/indexes/bools can't be tuples because <code class="python hljs"><span class="hljs-string">'obj[x, y]'</span></code> is converted to <code class="python hljs"><span class="hljs-string">'obj[(x, y)]'</span></code>.</strong></li>
26182618
</ul>
26192619
<div><h3 id="dataframe">DataFrame</h3><p><strong>Table with labeled rows and columns.</strong></p><pre><code class="python language-python hljs"><span class="hljs-meta">&gt;&gt;&gt; </span>pd.DataFrame([[<span class="hljs-number">1</span>, <span class="hljs-number">2</span>], [<span class="hljs-number">3</span>, <span class="hljs-number">4</span>]], index=[<span class="hljs-string">'a'</span>, <span class="hljs-string">'b'</span>], columns=[<span class="hljs-string">'x'</span>, <span class="hljs-string">'y'</span>])
26202620
x y

0 commit comments

Comments
 (0)