Skip to content

Commit

Permalink
corrige une ou deux typos (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
linogaliana committed Mar 31, 2022
1 parent 3e919f9 commit aa945cb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions content/course/manipulation/05a_s3.Rmd
Expand Up @@ -167,7 +167,7 @@ adéquates:

```{python, eval=FALSE}
from pyarrow import fs
s3 = fs.S3FileSystem(endpoint_override='http://'+'minio.lab.sspcloud.fr')
s3 = fs.S3FileSystem(endpoint_override="http://"+"minio.lab.sspcloud.fr")
```

{{% /tab %}}
Expand Down Expand Up @@ -463,8 +463,9 @@ df.head(2)
Pour un fichier au format parquet, on privilégiera:

```{python, eval = FALSE}
import pyarrow.parquet as pq
#bucket = ""
parquet_file=""
#parquet_file=""
df = pq.ParquetDataset(f'{bucket}/{parquet_file}', filesystem=s3).read_pandas().to_pandas()
```

Expand Down

0 comments on commit aa945cb

Please sign in to comment.