メインコンテンツへスキップ
データサイエンスを学ぶ

Data Science Tutorials

Learn data science and AI with step-by-step tutorials on the DataCamp blog. Master Python, SQL, machine learning, and build your own AI agents.
カテゴリーを探す
Group2人以上をトレーニングしますか?DataCamp for Businessを試す

How to Use SQL PIVOT

Enhance your SQL skills with the SQL PIVOT operator. Learn to convert rows into columns to create pivot tables in SQL Server and Oracle.
Allan Ouko's photo

Allan Ouko

2024年7月26日

SQL SUM() Function Explained

Discover the power of the SQL SUM() function for data aggregation. Learn how to implement rolling sums, cumulative sums, and sum multiple columns effectively.
Allan Ouko's photo

Allan Ouko

2024年8月15日

Stochastic Gradient Descent in Python: A Complete Guide for ML Optimization

Learn Stochastic Gradient Descent, an essential optimization technique for machine learning, with this comprehensive Python guide. Perfect for beginners and experts.
Bexruz (Bex) Tuychiev's photo

Bexruz (Bex) Tuychiev

2024年7月24日

Few-Shot Prompting: Examples, Theory, Use Cases

Few-shot prompting is a technique in which an AI model is given a few examples of a task to learn from before generating a response, using those examples to improve its performance on similar tasks.
Dr Ana Rojo-Echeburúa's photo

Dr Ana Rojo-Echeburúa

2024年7月21日

Zero-Shot Prompting: Examples, Theory, Use Cases

Zero-shot prompting is a technique in which an AI model is given a task or question without any prior examples or specific training on that task, relying solely on its pre-existing knowledge to generate a response.
Dr Ana Rojo-Echeburúa's photo

Dr Ana Rojo-Echeburúa

2024年7月21日

UNION vs UNION ALL in SQL

Discover the output and performance differences between UNION and UNION ALL: UNION removes duplicates while UNION ALL includes them.
Vikash Singh's photo

Vikash Singh

2026年1月15日

Python Boxplots: A Comprehensive Guide for Beginners

Create stunning boxplots in Python! This comprehensive beginner’s tutorial covers Matplotlib and Seaborn, helping you visualize and compare data distributions.
Austin Chia's photo

Austin Chia

2024年7月17日

What is Manhattan Distance?

Learn how to calculate and apply Manhattan Distance with coding examples in Python and R, and explore its use in machine learning and pathfinding.
Vinod Chugani's photo

Vinod Chugani

2024年7月17日

Python: Remove Duplicates From A List (Five Solutions)

To remove duplicates from a Python list while preserving order, create a dictionary from the list and then extract its keys as a new list: list(dict.fromkeys(my_list)).
Stephen Gruppetta's photo

Stephen Gruppetta

2024年7月16日