Spaces:
Running
Running
Commit
·
180bd17
1
Parent(s):
0724b5c
Add application files
Browse files
app.py
CHANGED
@@ -75,6 +75,7 @@ def greet(name1, name2):
|
|
75 |
# Generate a DataFrame with 50 rows and 2 columns filled with random numbers
|
76 |
num_rows = 50
|
77 |
num_cols = 2
|
|
|
78 |
data = np.random.rand(num_rows, num_cols)
|
79 |
|
80 |
# Create a DataFrame
|
|
|
75 |
# Generate a DataFrame with 50 rows and 2 columns filled with random numbers
|
76 |
num_rows = 50
|
77 |
num_cols = 2
|
78 |
+
import numpy as np
|
79 |
data = np.random.rand(num_rows, num_cols)
|
80 |
|
81 |
# Create a DataFrame
|