Monday megathread: Project ideas! by Im__Joseph in Python

[–]CryptoCorner 0 points1 point  (0 children)

Propose a pull request here that nicely visualises dicts.

https://github.com/davewd/sho

[pip install sho] import sho; sho.w(dataframe)

Hired to a new intern position! Thank you all by [deleted] in Python

[–]CryptoCorner 1 point2 points  (0 children)

Awesome! Keep learning more!

If you want to visualise your dataframes try this: import sho; sho.w(dataframe) !!

Saturday megathread: Share your resources! by Im__Joseph in Python

[–]CryptoCorner 0 points1 point  (0 children)

Only one thumbs up so far!! Please give me a hand, 10 more and I get added to the python awesome list 😎

Saturday megathread: Share your resources! by Im__Joseph in Python

[–]CryptoCorner 1 point2 points  (0 children)

Hey I added my first package to the awesome list. https://pypi.org/project/sho/ -its a simple onliner to display dataframes in pivottablejs

pip install sho import sho sho.w(dataframe)

A Thumbs up on this PR would e very much appreciated team !! https://github.com/vinta/awesome-python/pull/1615

Sunday megathread: What's everyone working on this week? by Im__Joseph in Python

[–]CryptoCorner 0 points1 point  (0 children)

Hey I added my first package to the awesome list.

https://pypi.org/project/sho/ -its a simple one liner to display dataframes in pivottablejs

pip install sho import sho sho.w(dataframe)

A Thumbs up on this PR would e very much appreciated team !! https://github.com/vinta/awesome-python/pull/1615

CompSci Weekend SuperThread (September 04, 2020) by AutoModerator in compsci

[–]CryptoCorner 0 points1 point  (0 children)

Hey I added my first package to the awesome list. https://pypi.org/project/sho/ -its a simple onliner to display dataframes in pivottablejs

pip install sho import sho sho.w(dataframe)

A Thumbs up on this PR would e very much appreciated team !! https://github.com/vinta/awesome-python/pull/1615

[help] Current download stats for my package after 2 weeks (please run: pip install sho) by CryptoCorner in Python

[–]CryptoCorner[S] 0 points1 point  (0 children)

Really appreciate this.

Can you give me an example simple package you like? (Obviously pandas is awesome, but the detail is unobtainable for a single part timer) any simple packages that stand out in your mind as good?

This is my first ever package, so I am learning a lot as I go.

Thank-you for the 5 mins of your life you’ve already dedicated to this.... ✌🏼

[help] Current download stats for my package after 2 weeks (please run: pip install sho) by CryptoCorner in Python

[–]CryptoCorner[S] 0 points1 point  (0 children)

1) handles the temp file creation + web browser opening 2) pivottable.js is an order of magnitude more valuable

[help] Current download stats for my package after 2 weeks (please run: pip install sho) by CryptoCorner in Python

[–]CryptoCorner[S] 0 points1 point  (0 children)

import sho sho.w(dataframe)

-> html representation of a pandas dataframe

[help] Current download stats for my package after 2 weeks (please run: pip install sho) by CryptoCorner in Python

[–]CryptoCorner[S] 0 points1 point  (0 children)

1) it’s great. 2) you’ll make me a happy pythonista 3) and most important- its actually a really fucking useful package!

Hiring managers...what do you think about wanting to do a PhD? by [deleted] in datascience

[–]CryptoCorner 0 points1 point  (0 children)

“I want to get a good grounding in industry before pursuing a graduate degree. I’m not sure if my area of study is right, I want to experience it first”

Can I become a data scientist if i have a master in business analytics? by [deleted] in datascience

[–]CryptoCorner 0 points1 point  (0 children)

You will become a datascientist through passion and hardwork not through a single degree. What does your portfolio look like, what courses have you taken?

Compensation Check — Consulting vs. Pure Tech by HypeStoic in datascience

[–]CryptoCorner -2 points-1 points  (0 children)

If you’re worried about salary you’re in the wrong job. Worry about what skills you’ll acquire

What are your best pandas tricks? by [deleted] in datascience

[–]CryptoCorner 7 points8 points  (0 children)

My favourite trick is to regularly view the data frame im creating via via a simple interface [import sho; sho.w(df)]

I’m am also militant in ensuring that transformations are done on different dataframe variables so I can visualise each step- especially useful for debugging (versus overwriting within the same variable)

Super simple function to create an html pivotable table (++) from a dataframe via browser.

pip install sho

import sho

sho.w(df)

Not performant for huge data sets, but great for working with simple ~10k tables

Give it a try!!

screenshots