import mars.tensor as mt
import mars.dataframe as md
df = md.DataFrame(
    mt.random.randint(1, 7, 6000),
    columns = ['one'])
df['two'] = df['one'] + mt.random.randint(1, 7, 6000)
ax = df.plot.hist(bins=12, alpha=0.5)
