Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created October 24, 2020 06:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/e638700cb825b1bf56c01a5a748fb94b to your computer and use it in GitHub Desktop.
Save amankharwal/e638700cb825b1bf56c01a5a748fb94b to your computer and use it in GitHub Desktop.
train["Number of Characters"] = train["ABSTRACT"].apply(lambda x: len(str(x)))
test["Number of Characters"] = test["ABSTRACT"].apply(lambda x: len(str(x)))
fig = make_subplots(rows=1, cols=2)
trace1 = go.Histogram(x = train["Number of Characters"])
fig.add_trace(trace1, row=1, col=1)
trace2 = go.Box(y = train["Number of Characters"])
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