Skip to content

Commit b641a08

Browse files
author
Saveen Reddy
authored
Update get-started.md
1 parent 0f57cde commit b641a08

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

articles/synapse-analytics/get-started.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,14 @@ code shows a simple example using the popular libraries matplotlib and seaborn.
164164
import matplotlib.pyplot
165165
import seaborn
166166
167-
sns.set(style = "whitegrid")
167+
seaborn.set(style = "whitegrid")
168168
df = spark.sql("SELECT * FROM nyctaxi.passengercountstats")
169169
df = df.toPandas()
170170
seaborn.lineplot(x="PassengerCount", y="SumTripDistance" , data = df)
171171
seaborn.lineplot(x="PassengerCount", y="AvgTripDistance" , data = df)
172172
matplotlib.pyplot.show()
173173
```
174+
174175
## Load data from a Spark table into a SQL Pool table
175176
176177
```
@@ -179,7 +180,7 @@ code shows a simple example using the popular libraries matplotlib and seaborn.
179180
df.write.sqlanalytics("SQLDB1.dbo.PassengerCountStats", Constants.INTERNAL )
180181
```
181182
182-
## Analytze NYC taxi data in Spark databases using SQL-on demand
183+
## Analyze NYC taxi data in Spark databases using SQL-on demand
183184
184185
* Tables in Spark databases are automatically visible and queryable by SQL on-demand
185186
* In Synapse Studio navigate to the Develop hub and create a new SQL script

0 commit comments

Comments
 (0)