You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<DF> = <DF>.sort_values(col_key/s) <spanclass="hljs-comment"># Sorts rows by passed column/s. Also `axis=1`.</span>
2660
2660
</code></pre>
2661
2661
<pre><codeclass="python language-python hljs"><DF> = <DF>.head/tail/sample(<int>) <spanclass="hljs-comment"># Returns first, last, or random n rows.</span>
2662
-
<DF> = <DF>.describe() <spanclass="hljs-comment"># Describes columns. Also shape, info(), corr().</span>
2662
+
<DF> = <DF>.describe() <spanclass="hljs-comment"># Describes columns. Also info(), corr(), shape.</span>
2663
2663
<DF> = <DF>.query(<spanclass="hljs-string">'<query>'</span>) <spanclass="hljs-comment"># Filters rows with e.g. 'col_1 == val_1 and …'.</span>
2664
2664
</code></pre>
2665
2665
<pre><codeclass="python language-python hljs"><DF>.plot.line/area/bar/scatter(x=col_key, …) <spanclass="hljs-comment"># `y=col_key/s`. Also hist/box(by=col_key).</span>
0 commit comments