Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created October 24, 2020 06:41
Embed
What would you like to do?
train['Number of Words'] = train['ABSTRACT'].apply(lambda x: len(str(x).split()))
test['Number of Words'] = test['ABSTRACT'].apply(lambda x: len(str(x).split()))
fig = make_subplots(rows = 1, cols = 2)
trace1 = go.Histogram(x = train['Number of Words'])
fig.add_trace(trace1, row = 1, col = 1)
trace2 = go.Box(y = train['Number of Words'])
fig.add_trace(trace2, row = 1, col = 2)
fig.update_layout(showlegend = False)
fig.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment