mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
4ba7b238e2
* changes * add changeset * chages * changes * changes * changes * changes --------- Co-authored-by: Ali Abid <aliabid94@gmail.com> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
11 lines
292 B
Python
11 lines
292 B
Python
import pandas as pd
|
|
import numpy as np
|
|
import random
|
|
|
|
df = pd.DataFrame({
|
|
'height': np.random.randint(50, 70, 25),
|
|
'weight': np.random.randint(120, 320, 25),
|
|
'age': np.random.randint(18, 65, 25),
|
|
'ethnicity': [random.choice(["white", "black", "asian"]) for _ in range(25)]
|
|
})
|