Data Science Articles

Sorted By: Most Recent
Catherine Gitau Catherine Gitau
Updated on May 22, 2025

Fuzzy String Matching in Python: Introduction to FuzzyWuzzy

Fuzzy string matching is the process of finding strings that approximately match each other. Here’s more on how fuzzy string matching works and how to perform the process using the Python library FuzzyWuzzy.

Image: Shutterstock / Built In
Matthew Urwin Matthew Urwin
Updated on May 22, 2025

What Is Quantitative Modeling?

In finance, quantitative modeling is the practice of organizing and interpreting data sets with mathematical formulas to identify trends in the broader markets. Here’s why it’s important, its key characteristics and the tools it involves.

Image: Shutterstock / Built In
Abdishakur Hassan Abdishakur Hassan
Updated on May 22, 2025

Create Interactive Dashboards With Panel and Python

A Python dashboard is an interactive application that displays data visually using charts, tables and controls like buttons or sliders. Here's how to create flexible and powerful dashboards in Python with the Panel library.

Image: Shutterstock / Built In
Linda Ngo Linda Ngo
Updated on May 22, 2025

The Ultimate Guide to Relational Operators in R

Relational operators in R reveal how R objects relate to one another. Learn everything you need to know to master them.

Image: Shutterstock / Built In
Parul Pandey Parul Pandey
Updated on May 22, 2025

10 Python Image Manipulation Tools You Can Try Today

Image processing in Python involves using Python to analyze and manipulate digital images to improve quality or extract information. Here’s an overview of common Python libraries used for image processing tasks.

Image: Shutterstock / Built In
Artturi Jalli Artturi Jalli
Updated on May 22, 2025

An Introduction to the With Statement in Python

The with statement in Python wraps the execution of a code block using the methods defined by a context manager. It's often used to replace a try-finally block with more concise code. Here's how and when to use the with statement in Python.

Image: Shutterstock / Built In
Mór Kapronczay Mór Kapronczay
Updated on May 22, 2025

A Beginner’s Guide to Language Models

A language model conducts a probability distribution over words or word sequences. Here’s more on what language models can do, their types, evolution and future outlook.

Image: Shutterstock / Built In
Javaid Nabi Javaid Nabi
Updated on May 22, 2025

Multiclass Classification With an Imbalanced Data Set

Multiclass classification is a machine learning task that involves classifying data into one of three or more classes. Here’s what you need to know.

Image: Shutterstock / Built In
Susan Maina Susan Maina
Updated on May 22, 2025

Can You Put a For Loop in an If Statement? 

You can put a for loop inside an if statement (and vice versa) in Python using nested control flow. For loops complete an iterative action for a defined number of elements, while if statements test a condition and then complete an action.

Image: Shutterstock / Built In
Wai Foong Ng Wai Foong Ng
Updated on May 22, 2025

Guide to ExcelJS: An Excel Workbook Manager

ExcelJS is a JavaScript package for managing Excel spreadsheets and workbooks. It can be used to read, manipulate and write spreadsheet data to XLSX and JSON.

Image: Shutterstock / Built In

Related Topics