Python Weekly - Issue 380: https://mailchi.mp/pythonweekly/python-weekly-issue-380
Pandas dropping Python 2 support: https://twitter.com/jakevdp/status/1080583192803823616
Twitter
Jake VanderPlas
It's 2019 and Python 2 is slowly trickling out of the PyData stack... e.g. matplotlib v3.0 & ipython v6.0 dropped Py2 support already, and the current release of SciPy (v1.3) and next release of numpy (1.16) will be the last to support Python 2. More at …
How do I slice or filter MultiIndex DataFrame levels?: https://stackoverflow.com/questions/53927460/how-do-i-slice-or-filter-multiindex-dataframe-levels
Stack Overflow
How do I slice or filter MultiIndex DataFrame levels?
Objective and Motivation
The MultiIndex API has been gaining popularity over the years, however, not everything about it is fully understood in terms of the structure, working, and associated oper...
The MultiIndex API has been gaining popularity over the years, however, not everything about it is fully understood in terms of the structure, working, and associated oper...
Demystifying Context Managers in Python, Focusing on Fundamentals: https://www.reddit.com/r/Python/comments/ac7pw7/demystifying_context_managers_in_python_focusing/
reddit
r/Python - Demystifying Context Managers in Python, Focusing on Fundamentals
1 vote and 0 comments so far on Reddit
Visualize the correlation of an investment portfolio in Python: https://www.reddit.com/r/Python/comments/accbu3/visualize_the_correlation_of_an_investment/
reddit
r/Python - Visualize the correlation of an investment portfolio in Python
1 vote and 0 comments so far on Reddit
Select rows from a DataFrame based on values in a column in pandas: https://stackoverflow.com/questions/17071871/select-rows-from-a-dataframe-based-on-values-in-a-column-in-pandas
Stack Overflow
How to select rows from a DataFrame based on column values
How can I select rows from a DataFrame based on values in some column in Pandas?
In SQL, I would use:
SELECT *
FROM table
WHERE colume_name = some_value
I tried to look at Pandas' documentation, b...
In SQL, I would use:
SELECT *
FROM table
WHERE colume_name = some_value
I tried to look at Pandas' documentation, b...