AI-powered search & chat for Data / Computer Science Students

Learn more with these recommended learning resources

1.1 Introduction to SymPy

 Analytics Vidhya

SymPy is the python library support for Symbolic Mathematics. https://www.sympy.org/ is the official page of SymPy. Main objective of the SymPy is to provide support for Algebric Compuation in Python…...

Read more at Analytics Vidhya

Solving Mathematical Problems in Python with SymPy

 Python in Plain English

I was working through Advent of Code problems, and came across a problem that I was really struggling to solve. The objective was to determine the initial coordinates and velocity of a rock which woul...

Read more at Python in Plain English

SymPy: Symbolic Computation in Python

 Towards Data Science

Have you ever wished to solve a math equation in Python? Wouldn’t it be nice if we could solve an algebraic equation like below in one line of code The real power of SymPy is its ability to work with…...

Read more at Towards Data Science

A Quick Guide to Symbolic Mathematics with SymPy

 Towards Data Science

Whether you are a student in university or working in data science, there is no way around mathematics. One might even say that data science is (simplistically put) a form of applied…

Read more at Towards Data Science

The Glory of NumPy

 Analytics Vidhya

NumPy is a library in python that provides homogeneous multidimensional arrays and matrices as well as a large collection of high-level mathematical functions. In this post, I will go over some of…

Read more at Analytics Vidhya

What is NumPy?

 NumPy user guide

NumPy is the fundamental package for scientific computing in Python. It is a Python library that provides a multidimensional array object, various derived objects (such as masked arrays and matrices),...

Read more at NumPy user guide

pydantic

 Towards Data Science

Having complex nested data structures is hard. The traditional approach to store this kind of data in Python is nested dictionaries. Although Python dictionaries are amazing, there are two issues…

Read more at Towards Data Science

Minimization With Constraints Using Python’s SymPy

 Python in Plain English

This is part 2 of my “replacing pencil & paper calculations by Python” series, where I try to solve typical (college) math homework problems using Python packages like SymPy. Today, I will apply…

Read more at Python in Plain English

NumPy - The BIG picture and WORTHY insights

 Analytics Vidhya

NumPy makes it easy and pretty fast to do computation in PYTHON . NumPy is a library for the Python programming language, adding support for large, multi-dimensional arrays and matrices, along with a…...

Read more at Analytics Vidhya

Numpy: An Introduction to Ndarrys

 Analytics Vidhya

Numpy, short for Numerical Python, is a foundational library that many other data science libraries like Pandas and Scikit-learn depend on. In addition to its data science applications, numpy helps…

Read more at Analytics Vidhya

Python Programming — Part 3: Numpy with Python

 Analytics Vidhya

Welcome back to my article chain on “Python Programming”. Today I am going to discuss about every essential things about Numpy lib what you need to know before go to learn Machine Learning. Hope you…

Read more at Analytics Vidhya

SciPy and NumPy

 Full Stack Python

SciPy is an umbrella project for many open source data analysis libraries such as NumPy, pandas and Matplotlib.

Read more at Full Stack Python

Introduction To Numpy

 Analytics Vidhya

Numpy is a general-purpose array-processing package. It provides a high-performance multidimensional array object, and tools for working with these arrays. It is the fundamental package for…

Read more at Analytics Vidhya

An Introduction to NumPy

 Python in Plain English

NumPy stands for Numerical Python. NumPy is an open-source numerical Python library. NumPy contains a multi-dimensional array and matrix data structures. It can be utilized to perform a number of…

Read more at Python in Plain English

What is NumPy in Python?

 Python in Plain English

NumPy is a popular and widely used Python library that provides powerful and efficient tools for numerical computing. NumPy stands for Numerical Python, and it is designed to enable the creation, mani...

Read more at Python in Plain English

NUMPY: A Short and Sweet Introduction You’ll Actually Enjoy!

 Python in Plain English

Image by the Author In this article, we will discuss everything about numpy, why we use numpy arrays instead of lists, and why numpy makes many things easier in the realm of matrix operations. What is...

Read more at Python in Plain English

Library of the week #6: NumPy

 Python in Plain English

Why Numpy? NumPy is a library conceived for numerical computations. It can be used for many scientifical calculations, and for machine learning. But don’t run away if this sounds too complex to you. N...

Read more at Python in Plain English

Intermediate Python: NumPy

 Towards Data Science

If you’ve recently completed a course or book on the basics of Python, and are now wondering where to go next, exploring different Python packages would be a natural next step. The NumPy package…

Read more at Towards Data Science

The Pythonic Way

 Python in Plain English

Point class in Python Commenting is boring. Documenting is time-wasting. Test2 is a good name for a class. a_final is a good name for a variable. I don’t need to write tests, that function is not so i...

Read more at Python in Plain English

How is Symbolic Differentiation Done in Python using SymPy?

 Python in Plain English

This article demonstrates how to symbolically evaluate nth order symbolic derivatives in Python using the SymPy library. Review this article to understand the fundamentals of differentiation…

Read more at Python in Plain English

Want to Crunch Numbers? There’s NumPy.

 Python in Plain English

H ey there, fellow Python enthusiasts! Buckle up, because today we’re diving headfirst into the wonderful world of NumPy. Yeah, that’s right, NumPy — the lifesaver when it comes to number crunching, d...

Read more at Python in Plain English

3D Kinematics Visualisation with Python Libraries SymPy and NumPy

 Python in Plain English

The focus of this article is to visualise the trajectory of a particle moving in 3 Dimensional space. From the trajectory, kinematical properties are evaluated, such as velocity and acceleration…

Read more at Python in Plain English

Mastering NumPy: A Data Enthusiast’s Essential Companion

 Python in Plain English

Your Comprehensive Guide to Harnessing the Power of NumPy. NumPy: World of Matrices— Image Generated from Ideogram.ai Welcome to the world of NumPy, where you don’t have to stick to the limitations o...

Read more at Python in Plain English

NumPy for Data science

 Analytics Vidhya

NumPy (Numerical Python) is an open source Python library that’s used in almost every field of science and engineering. It’s the universal standard for working with numerical data in Python, and it’s…...

Read more at Analytics Vidhya