Welcome to datagy.io
Learning data science can be hard. It can be frustrating. It can also be confusing. That’s where we come in – datagy is a site that makes learning different data science and Python skills intuitive and easy to understand.
Our in-depth guides often provide more than a handful of different ways to be able to accomplish the same thing, allowing you to tailor your approach to your own unique style!
Want to read some of our recent posts?
- Python Modulo Operator: Understanding % in PythonIn this tutorial, you’ll learn how the modulo operator (%) works in Python. The Python modulo operator is one of the many arithmetic operators that are available in… Read More »Python Modulo Operator: Understanding % in Python
- Convert JSON to a Python DictionaryIn this tutorial, you’re going to learn how to convert a JSON file or string into a Python dictionary. Being able to work with JSON data is an… Read More »Convert JSON to a Python Dictionary
- Python reduce(): How to Reduce Iterables in PythonIn this tutorial, you’ll learn how to use the Python reduce() function to reduce iterables, such as lists. The Python reduce function takes an iterable of any length… Read More »Python reduce(): How to Reduce Iterables in Python
- Pandas to_excel: Writing DataFrames to Excel FilesIn this tutorial, you’ll learn how to save your Pandas DataFrame or DataFrames to Excel files. Being able to save data to this ubiquitous data format is an… Read More »Pandas to_excel: Writing DataFrames to Excel Files
- Python Prime Numbers: Find a Value or a Range of ValuesIn this tutorial, you’ll learn how to use Python to find prime numbers, either by checking if a single value is a prime number or finding all prime… Read More »Python Prime Numbers: Find a Value or a Range of Values
- Python String Contains: Check if a String Contains a SubstringIn this tutorial, you’ll learn how to use Python to check if a string contains another substring. There are a number of ways to use Python to check… Read More »Python String Contains: Check if a String Contains a Substring
- Python setattr() Function ExplainedIn this tutorial, you’ll learn about the Python setattr() function, including what it does, when to use it, and when it’s redundant to use it. The function is… Read More »Python setattr() Function Explained
- NumPy linspace: Creating Evenly Spaced Arrays with np.linspaceIn this tutorial, you’ll learn how to use the NumPy linspace function to create arrays of evenly spaced numbers. This can be incredibly helpful when you’re working with… Read More »NumPy linspace: Creating Evenly Spaced Arrays with np.linspace