Live data from Hacker News

Mito – Excel-like interface for Pandas dataframes in Jupyter notebook

trymito.io

1–10 of 101 posts

Re: Mito – Excel-like interface for Pandas dataframes in Jupyter notebook

#3
I played around with many of these before:

- https://github.com/quantopian/qgrid

- https://github.com/man-group/dtale

I find that I'm actually a lot faster using basic Pandas methods to get the data I want in exactly the form I want it.

If I really want to show everything, I just use:

```

with pd.option_context('display.max_rows', None):

   print(df)
```

Re: Mito – Excel-like interface for Pandas dataframes in Jupyter notebook

#5
post #3

I played around with many of these before: - https://github.com/quantopian/qgrid - https://github.com/man-group/dtale I find that I'm actually a lot faster using basic Pandas methods to get the data I want in exactly the form I want it. If I really want to show everything, I just use: ``` with pd.option_context('display.max_rows', None): print(df) ```

what irks me about dtale is if you scroll with the vertical slider, it can't update the view fast enough until you stop scrolling.

Re: Mito – Excel-like interface for Pandas dataframes in Jupyter notebook

#6
Looks neat - pandas is very powerful and it makes it more approachable for non-programmers. However paid product like this - I probably wouldn't make the switch to this and then have the company go belly up leaving users stranded. Too much risk.

Hope for the best though - pandas is pretty fantastic.

Post reply on HN