We already got you started with a sample dataset which you can play around with...adksjhfakshdf kasdjkf haskdh f lufeiyang
Playing around 🧸
You can even switch between SQL and Python...
And you can visualize your data easily, so you can generate insights faster...
Run to view results
Run to view results
Run to view results
Run to view results
Run to view results
import pandas as pd
import numpy as np
# 生成一个80列,10行的DataFrame,数据为随机数
columns = [f'col_{i+1}' for i in range(80)]
data = np.random.rand(1000000, 80)
df = pd.DataFrame(data, columns=columns)
df.head()
Run to view results
Run to view results
col_3
Run to view results