qtconsole

Using describe() method to exclude a column

Using describe() method to exclude a column Question: I am new to using python with data sets and am trying to exclude a column ("id") from being shown in the output. Wondering how to go about this using the describe() and exclude functions. Asked By: cam.mc || Source Answers: Use output.describe(exclude=[‘id’]) Answered By: robdev91 describe …

Total answers: 3

Copy code from IPython without leading triple dots

Copy code from IPython without leading triple dots Question: I’m using IPython Qt Console and when I copy code FROM Ipython it comes out like that: class notathing(object): …: …: def __init__(self): …: pass …: Is there any way to copy them without those leading triple dots and doublecolon? P.S. I tried both Copy and …

Total answers: 5