Data Science Algorithms PDF List of Algorithms in Data Science, AI (Artificial Intelligence) We described different types of AI algorithms in data science along with their categories in this article.
1. Linear Regression: We use Linear Regression algorithm to predict target column value, when the target column contains a large number of distinct values.
2. Logistic Regression: Used for classification-based problems, like yes-or-no questions, like whether an email is spam or not.
3. Decision Trees: Think of these as flowcharts that help in decision-making processes.
How Decision Trees Work: 1. Decision Nodes (Internal Nodes): At each internal node, the decision tree algorithm selects the best feature to split the data based on certain criteria. The goal is to find the feature that best separates the data into different classes or categories.
2. Branches: Based on the feature selected at a decision node, the data is split into subsets. Each branch represents a specific value or range for the chosen feature.