Simulating the Card Game ‘War'
A coding story about a simple game with an infinite twist- 23516Murphy ≡ DeepGuide
Args vs kwargs: which is the fastest way to call a function in Python?
A clear demonstration of the timeit module- 29522Murphy ≡ DeepGuide
Bridge the Gap Between Data and Humanity With the Power of This Python Library
Make your Python outputs more understandable to humans- 29214Murphy ≡ DeepGuide
Python args, kwargs, and All Other Ways to Pass Arguments to Your Function
Expertly design your function parameters in 6 examples- 22896Murphy ≡ DeepGuide
The easiest way to UPSERT with SQLAlchemy
One command to both INSERT new data and UPDATE existing records in your database- 23250Murphy ≡ DeepGuide
The Most Complete Guide for Creating a Good PyPI Package
Everything you need to know - for new and experienced users.- 27339Murphy ≡ DeepGuide
Building a Tree-Structured Parzen Estimator from Scratch (Kind Of)
An alternative to traditional hyperparameter tuning methods- 20164Murphy ≡ DeepGuide
Pip Install Specific Version – How to Install a Specific Python Package Version with Pip
Want to install a specific Python package version with Pip? This article will show you how with hands-on examples and guides.- 21303Murphy ≡ DeepGuide
Python Quirks: Understand How a Variable Can Be Modified by a Function That Doesn't Return Any
A deep dive into how Python passes arguments and mutability to prevent unexpected bugs- 30067Murphy ≡ DeepGuide
Nested Dictionary Python – A Complete Guide to Python Nested Dictionaries
How to work with Nested Dictionary in Python? This article teaches you everything you need to know about Python Nested Dictionaries.- 26975Murphy ≡ DeepGuide
Don't Be Afraid to Go Beyond Online Coding Courses
Interactive coding courses are great, but (by design) they'll only get you so far. Here's how to maximise their potential while overcoming...- 24649Murphy ≡ DeepGuide
Five Things I Learned From My First R Programming Event
Lessons about R, data science, and engaging an audience from SatRDays London- 21317Murphy ≡ DeepGuide
Docker for Data Science
An introduction and application of Docker for Data Scientists- 20694Murphy ≡ DeepGuide
Stop Using PowerPoint for Your ML Presentations and Try This Instead
Stop Using PowerPoint for Your ML Presentations and Try This Instead PowerPoint presentations suck. At least, bad ones do. Bad PowerPoints create distracted audiences (who turn off their cameras and multitask), and they make it easy for presenters to get- 22350Murphy ≡ DeepGuide
What 50+ ML Interviews (as an Interviewer) Have Taught Me
If you thought facing a technical interview is hard, try conducting an interview. I’m not talking about the awkward interviewers who left a scathing impression, watching you condescendingly, while you’re wishing for the pain to end. I’m- 20428Murphy ≡ DeepGuide
Which Online Data Science Course Should I Do?
Hint: start with the free stuff- 26693Murphy ≡ DeepGuide
4 Easy-to-Implement, High-Impact Tweaks for Supercharging Your Python Code's Performance
My philosophy centers around attempting simple solutions before resorting to complex ones. By exploring the easy methods in this article, you may find the performance increase you need, sparing yourself the intricacies and countless hours required for imp- 23457Murphy ≡ DeepGuide
Boost Your Python Code With Rust Extensions
As most of you already know, Python is a general-purpose programming language optimized for simplicity and ease of use. While it’s a great tool for light tasks, code execution speed can soon become a major bottleneck in your programs. In this articl- 20617Murphy ≡ DeepGuide
Python Exception Testing: Clean and Effective Methods
Beyond Basics: Advanced Python Exception Testing for Pytest and Unittest- 21235Murphy ≡ DeepGuide
Decoding NumPy's Dot Product: A Brief Exploration of Dimensional Wizardry
Introduction Am I the only one who periodically gets confused when dealing with dimensions in NumPy? Today, while reading a Gradio’s documentation page, I came across the following code snippet: sepia_filter = np.array([ [0.393, 0.769, 0.189], [0.34- 24726Murphy ≡ DeepGuide
We look at an implementation of the HyperLogLog cardinality estimati
Using clustering algorithms such as K-means is one of the most popul
Level up Your Data Game by Mastering These 4 Skills
Learn how to create an object-oriented approach to compare and evalu
When I was a beginner using Kubernetes, my main concern was getting
Tutorial and theory on how to carry out forecasts with moving averag