tl-semicolon-dr

tl;dr for various ressource I read, heard or saw

View the Project on GitHub knil-sama/tl-semicolon-dr

Source

Video by Marc Garcia

tl;dr

import fletcher as fr
import pandas as pd

df = pd.DataFrame({
    'str_column': fr.FletcherArray(['Test', None, 'Strings'])
})
df.info()

# <class 'pandas.core.frame.DataFrame'>
# # RangeIndex: 3 entries, 0 to 2
# # Data columns (total 1 columns):
# # str_column    2 non-null string
# # dtypes: string(1)
# # memory usage: 108.0 bytes

Afterword