* **All operations operate on columns by default. Use `'axis=1'` parameter to process the rows instead. Transform passes DF to a function if it rases an error after receiving a Sr.**
* **All operations operate on columns by default. Use `'axis=1'` parameter to process the rows instead. Transform passes DF to a function if it raises an error after receiving a Sr.**
├── NameError <spanclass="hljs-comment"># Raised when a variable name is not found.</span>
├── OSError <spanclass="hljs-comment"># Errors such as “file not found” or “disk full” (see Open).</span>
│ └── FileNotFoundError <spanclass="hljs-comment"># When a file or directory is requested but doesn't exist.</span>
├── RuntimeError <spanclass="hljs-comment"># Raised by errors that don't fall in other categories.</span>
├── RuntimeError <spanclass="hljs-comment"># Raised by errors that don't fall into other categories.</span>
│ └── RecursionError <spanclass="hljs-comment"># Raised when the maximum recursion depth is exceeded.</span>
├── StopIteration <spanclass="hljs-comment"># Raised by next() when run on an empty iterator.</span>
├── TypeError <spanclass="hljs-comment"># Raised when an argument is of wrong type.</span>
@ -2652,7 +2652,7 @@ c <span class="hljs-number">6</span> <span class="hljs-number">7</span>
</code></pre></div>
<ul>
<li><strong>All operations operate on columns by default. Use <codeclass="python hljs"><spanclass="hljs-string">'axis=1'</span></code> parameter to process the rows instead. Transform passes DF to a function if it rases an error after receiving a Sr.</strong></li>
<li><strong>All operations operate on columns by default. Use <codeclass="python hljs"><spanclass="hljs-string">'axis=1'</span></code> parameter to process the rows instead. Transform passes DF to a function if it raises an error after receiving a Sr.</strong></li>