File size: 335 Bytes
b46a36f
 
03ebbc0
b46a36f
 
 
 
 
 
 
03ebbc0
1
2
3
4
5
6
7
8
9
10
11
This is a test on how to upload a dataset using pandas:

```python
import pandas as pd

# First read from another repo or create your dataframe
df = dd.read_parquet("hf://datasets/asoria/columns_test@~parquet/default/test/0000.parquet")

# And finally, push to HF repo
df.to_parquet('hf://datasets/asoria/pandas_test/0000.parquet')
```