Skip to content

Commit f24e6ee

Browse files
committed
widden the pandas example
1 parent 9c74db8 commit f24e6ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/examples/pydata.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import numpy as np
2525
import pandas as pd
2626
2727
rng = np.random.default_rng()
28-
data = rng.standard_normal((100, 3))
29-
df = pd.DataFrame(data, columns=['a', 'b', 'c'])
28+
data = rng.standard_normal((100, 26))
29+
df = pd.DataFrame(data, columns=list(string.ascii_lowercase))
3030
df
3131
```
3232

0 commit comments

Comments
 (0)