How I used chi2 to make predictions on Kaggle’s September 2021 tabular competition
https://tracyrenee61.medium.com/how-i-used-chi2-to-make-predictions-on-kaggles-september-2021-tabular-competition-e4c747a86012
https://tracyrenee61.medium.com/how-i-used-chi2-to-make-predictions-on-kaggles-september-2021-tabular-competition-e4c747a86012
Medium
How I used chi2 to make predictions on Kaggle’s September 2021 tabular competition
I have been studying a Coursera course, Data Analysis with Python, and the most recent topic that I have studied is chi2. I researched…
Economizando 1 salário mínimo no Axie Infinity usando python web scraping e um grupo de telegram
https://medium.com/@vitor.azambuja.90/economizando-1-sal%C3%A1rio-m%C3%ADnimo-no-axie-infinity-usando-python-web-scraping-e-um-grupo-de-telegram-db34e0cccda2
https://medium.com/@vitor.azambuja.90/economizando-1-sal%C3%A1rio-m%C3%ADnimo-no-axie-infinity-usando-python-web-scraping-e-um-grupo-de-telegram-db34e0cccda2
Medium
Economizando 1 salário mínimo no Axie Infinity usando python web scraping e um grupo de telegram
Como economizar R$900 ao sacar suas criptomoedas do jogo, buscando dados do JavaScript de um site com python.
Python and Physics: Lorenz and Rossler Systems
https://medium.com/@cosmonauts/python-and-physics-lorenz-and-rossler-systems-65735791f5a2
https://medium.com/@cosmonauts/python-and-physics-lorenz-and-rossler-systems-65735791f5a2
Medium
Python and Physics: Lorenz and Rossler Systems
Building upon my previous article on the Runge-Kutta method, we are going to explore some applications of the Runge-Kutta method to graph…
Awesome Tkinter Tricks You Should Know
https://preettheman.medium.com/awesome-tkinter-tricks-you-should-know-9438c4e8f89a
https://preettheman.medium.com/awesome-tkinter-tricks-you-should-know-9438c4e8f89a
Medium
Awesome Tkinter Tricks You Should Know
Welcome back! TkInter is an awesome Python package that allows us to build GUI’s, so let’s talk about some of the best tricks that you…
3 simple things beginners can do to learn Python quickly
https://medium.com/@larrygray/3-simple-things-beginners-can-do-to-learn-python-quickly-3060e8fee2b5
https://medium.com/@larrygray/3-simple-things-beginners-can-do-to-learn-python-quickly-3060e8fee2b5
Medium
3 simple things beginners can do to learn Python quickly
You can learn Python basics within 12 hours; the trick is simple, code and read as much as possible.
How to Generate Signed URLs Using Python in Google Cloud Run
https://blog.bavard.ai/how-to-generate-signed-urls-using-python-in-google-cloud-run-835ddad5366
https://blog.bavard.ai/how-to-generate-signed-urls-using-python-in-google-cloud-run-835ddad5366
Medium
How to Generate Signed URLs Using Python in Google Cloud Run
Generating signed URLs is tricky, especially when doing it for Google Cloud Storage (GCS) using Python. Here I’ll explain how to generate…
A beginner’s guide to OCTIS: Optimizing and Comparing Topic Models Is Simple
https://emilrijcken.medium.com/a-beginners-guide-to-octis-optimizing-and-comparing-topic-models-is-simple-590554ec9ba6
https://emilrijcken.medium.com/a-beginners-guide-to-octis-optimizing-and-comparing-topic-models-is-simple-590554ec9ba6
Medium
A beginner’s guide to OCTIS: Optimizing and Comparing Topic Models Is Simple
Topic models are promising generative statistical methods that aim to extract the hidden topics underlying a collection of documents…
New Ways to Be Told That Your Python Code Is Bad
https://nickdrozd.github.io/2021/09/02/new-pylint-checks.html#at?hmsr=toutiao.io&utm_campaign=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io
https://nickdrozd.github.io/2021/09/02/new-pylint-checks.html#at?hmsr=toutiao.io&utm_campaign=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io
Something Something Programming
Exciting New Ways To Be Told That Your Python Code is Bad
I love linters. A linter is a program that looks for problems in code without running it. There is something gratifying about running a linter on a codebase and seeing a big list of warnings and errors. Sometimes it can even be fun to fix them!
How to use SingleStore with Spark ML for Fraud Detection
https://medium.com/@VeryFatBoy/how-to-use-singlestore-with-spark-ml-for-fraud-detection-d070524581d3
https://medium.com/@VeryFatBoy/how-to-use-singlestore-with-spark-ml-for-fraud-detection-d070524581d3
Medium
How to use SingleStore with Spark ML for Fraud Detection
Create and evaluate a Logistic Regression model
How async/await works in Python
https://tenthousandmeters.com/blog/python-behind-the-scenes-12-how-asyncawait-works-in-python
https://tenthousandmeters.com/blog/python-behind-the-scenes-12-how-asyncawait-works-in-python
Tenthousandmeters
Python behind the scenes #12: how async/await works in Python
Mark functions as async. Call them with await. All of a sudden, your program becomes asynchronous – it can do useful things while it waits for...
How to Solve Integrals in Python: A Complete and Quick Guide to Symbolic and Numerical Integration using Sympy and Scipy
https://youtu.be/2I44Y9hfQ4Q
https://youtu.be/2I44Y9hfQ4Q
YouTube
Integration in PYTHON (Symbolic AND Numeric)
Check out my course on UDEMY: learn the skills you need for coding in STEM:
https://www.udemy.com/course/python-stem-essentials/
In this video I show how to evaluate integrals symbolically and numerically in python. The main packages used here are sympy…
https://www.udemy.com/course/python-stem-essentials/
In this video I show how to evaluate integrals symbolically and numerically in python. The main packages used here are sympy…
PEP 668 -- Graceful cooperation between external and Python package managers
https://www.python.org/dev/peps/pep-0668
https://www.python.org/dev/peps/pep-0668
Python Enhancement Proposals (PEPs)
PEP 668 – Marking Python base environments as “externally managed” | peps.python.org
A long-standing practical problem for Python users has been conflicts between OS package managers and Python-specific package management tools like pip. These conflicts include both Python-level API incompatibilities and conflicts over file ownership.