Skip to content

Commit 38b025a

Browse files
author
Saveen Reddy
authored
Update get-started.md
1 parent 23f563e commit 38b025a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

articles/synapse-analytics/get-started.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,8 @@ The name of the container in the storage account: users
219219
### Creating CSV and Parquet files in your Storage account
220220
Run the the following code in a notebook. It creates a CSV and parquet data in the storage account
221221
222-
```%%pyspark
222+
```
223+
%%pyspark
223224
df = spark.sql("SELECT * FROM nyctaxi.passengercountstats")
224225
df = df.repartition(1) # This ensure we'll get a single file during write()
225226
df.write.mode("overwrite").csv("/NYCTaxi/PassengerCountStats.csv")

0 commit comments

Comments
 (0)