actual sample size

#2
by marcmaxmeister - opened

This datset contains 440,645 usable rows of data, after you exclude "[removed]" or "[deleted]" comments in the selftext column:

source = Path('one-million-reddit-confessions.csv')
df = pd.read_csv(source, usecols= ['selftext', 'title', 'score'])
df = df[~df.selftext.isin(['[removed]', '[deleted]'])]

440645 rows × 3 columns

Sign up or log in to comment