Results for "SPLIT"
6 / 33 posts
Filter by Category
How to Two series with comma separate(any Delimiter) value split into in rows respectively
...series with comma separate(any Delimiter) value and we want split into in rows, I have create function for that: IF OBJECT_ID('TF_SplitTwoSe…
Understanding Accuracy and Evaluation Metrics in Machine Learning
Learn accuracy and ML evaluation metrics with simple Hinglish explanations, formulas, examples, and real-world use cases for better model performance.
Split full name into first name and last name in SQL
Split full name into first name and last name : SELECT EmployeeName, CASE WHEN CHARINDEX(' ', EmployeeName) > 0 -- Check if there is a space (indicating…
Categorical Data Handling in Machine Learning (Pandas + Sklearn) – Complete Practical Guide
Learn categorical data encoding end-to-end — Label, Ordinal, One-Hot, Target, Binary, Frequency encoding with Pandas & Sklearn. Beginner to advanced.
How to one series with comma separate(any Delimiter) value split into in rows
...series with comma separate(any Delimiter) value and we want split into in rows, I have create function for that: CREATE OR ALTER FUNCTION [dbo...
Logistic Regression — The Superhero of Classification | ML Series Part 3
Logistic Regression explained completely — sigmoid function, evaluation metrics, class imbalance, threshold tuning, and real-world projects in Python. Beginn...