Results for "SPLIT"

6 / 33 posts

Search: SPLIT

Filter by Category

SQL

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…

comma saparate database mysql
Match in titleMatch in contentMatch in code
Mar 19, 2026 1 min read
Machine learning

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.

machine-learning python data-science
Match in contentMatch in code
Apr 26, 2026 25 min read
SQL

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…

microsoft programming sql-server
Match in titleMatch in contentMatch in code
Mar 19, 2026 1 min read
Machine learning

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.

categorical encoding machine learning pandas
Match in contentMatch in code
Apr 24, 2026 28 min read
SQL

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...

database pivot SQL Server
Match in titleMatch in contentMatch in code
Mar 19, 2026 2 min read
Machine learning

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...

logistic regression logistic regression python classification machine learning
Match in contentMatch in code
Apr 14, 2026 21 min read