We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23f563e commit 38b025aCopy full SHA for 38b025a
articles/synapse-analytics/get-started.md
@@ -219,7 +219,8 @@ The name of the container in the storage account: users
219
### Creating CSV and Parquet files in your Storage account
220
Run the the following code in a notebook. It creates a CSV and parquet data in the storage account
221
222
- ```%%pyspark
+ ```
223
+ %%pyspark
224
df = spark.sql("SELECT * FROM nyctaxi.passengercountstats")
225
df = df.repartition(1) # This ensure we'll get a single file during write()
226
df.write.mode("overwrite").csv("/NYCTaxi/PassengerCountStats.csv")
0 commit comments