Skip to content

Commit da9c48c

Browse files
committed
convert another link to use local file
1 parent 44343f4 commit da9c48c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/library/tables-and-data-grids/data_table.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ rx.data_table(
4343

4444
```python
4545
import pandas as pd
46-
nba_data = pd.read_csv("https://media.geeksforgeeks.org/wp-content/uploads/nba.csv")
46+
nba_data = pd.read_csv("data/nba.csv")
4747
...
4848
rx.data_table(
4949
data = nba_data[["Name", "Height", "Age"]],
@@ -53,6 +53,8 @@ rx.data_table(
5353
)
5454
```
5555

56+
📊 **Dataset source:** [nba.csv](https://media.geeksforgeeks.org/wp-content/uploads/nba.csv)
57+
5658
The example below shows how to create a data table from from a list.
5759

5860
```python

0 commit comments

Comments
 (0)