Strings in Python
Let’s look at strings (str) in Python. The string is one of the scalar types in Python. The […]
Let’s look at strings (str) in Python. The string is one of the scalar types in Python. The […]
Are you needing to split a string inside a column of a pandas DataFrame? Do you want to […]
Suppose you are working with a pandas DataFrame in Python. You are doing some EDA (exploratory data analysis) […]
In Python, how would you find the Nth occurrence of a character (or substring) in a string? Yes, […]
There are several ways to change the case in a pandas String. There is upper, lower, title, capitalize […]
Convert Strings to Floats This post discusses one of the EDA Structuring tasks using Python and pandas. Here […]
Exploratory Data Analysis has six phases: discovering, structuring, cleaning, joining, validating and presenting. The first phase is discovery. […]
In R language, if you have a string that you need to convert to a date, try this. […]
Sometimes you have extra spaces in your text string. You need to clean that up. trimws() removes leading […]
In Microsoft Excel, what formula would you use to find the Nth occurrence of a character (or string) […]
T-SQL’s CHARINDEX() function is useful for parsing out characters within a string. However, it only returns the first […]
This post is about working with one column in a SQL Server table that contains a comma-separated list […]