Skip to content

Commit bcd8d27

Browse files
committed
acrolinx issues
1 parent 34d5dd5 commit bcd8d27

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

articles/synapse-analytics/spark/apache-spark-data-visualization.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ The R ecosystem offers multiple graphing libraries that come packed with many di
283283

284284
The [ggplot2](https://ggplot2.tidyverse.org/) library is popular for data visualization and exploratory data analysis.
285285

286-
![ggplot2 graph example.](./media/apache-spark-data-viz/ggplot2.png#lightbox)
286+
![Screenshot of a ggplot2 graph example.](./media/apache-spark-data-viz/ggplot2.png#lightbox)
287287

288288
```r
289289
library(ggplot2)
@@ -314,7 +314,7 @@ install.packages("rbokeh")
314314

315315
Once installed, you can leverage rBokeh to create interactive visualizations.
316316

317-
![rBokeh graph example.](./media/apache-spark-data-viz/bokeh_plot.png#lightbox)
317+
![Screenshot of a rBokeh graph example.](./media/apache-spark-data-viz/bokeh_plot.png#lightbox)
318318

319319
```r
320320
library(rbokeh)
@@ -336,7 +336,7 @@ install.packages("plotly")
336336

337337
Once installed, you can leverage Plotly to create interactive visualizations.
338338

339-
![Plotly graph example.](./media/apache-spark-data-viz/plotly-r.png#lightbox)
339+
![Screenshot of a Plotly graph example.](./media/apache-spark-data-viz/plotly-r.png#lightbox)
340340

341341
```r
342342
library(plotly)
@@ -360,7 +360,7 @@ install.packages("highcharter")
360360

361361
Once installed, you can leverage Highcharter to create interactive visualizations.
362362

363-
![Highcharter graph example.](./media/apache-spark-data-viz/highcharter.png#lightbox)
363+
![Screenshot of a Highcharter graph example.](./media/apache-spark-data-viz/highcharter.png#lightbox)
364364

365365
```r
366366
library(magrittr)
@@ -376,7 +376,7 @@ Azure Synapse Analytics integrates deeply with Power BI allowing data engineers
376376

377377
Azure Synapse Analytics allows the different workspace computational engines to share databases and tables between its Spark pools and serverless SQL pool. Using the [shared metadata model](../metadata/overview.md),you can query your Apache Spark tables using SQL on-demand. Once done, you can connect your SQL on-demand endpoint to Power BI to easily query your synced Spark tables.
378378

379-
380379
## Next steps
380+
381381
- For more information on how to set up the Spark SQL DW Connector: [Synapse SQL connector](./spark/../synapse-spark-sql-pool-import-export.md)
382382
- View the default libraries: [Azure Synapse Analytics runtime](../spark/apache-spark-version-support.md)

articles/synapse-analytics/spark/apache-spark-manage-session-packages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ We recommend you to run the %%configure at the beginning of your notebook. You c
6363

6464
Azure Synapse Analytics pools include many popular R libraries out-of-the-box. You can also install additional 3rd party libraries during your Apache Spark notebook session.
6565

66-
Session-scoped R libraries allow you to customize the R environment for a specific notebook session. When you install an R session-scoped library, only the notebook associated with that notebook session will have access to the newly installed libraries. Other notebooks or sessions using the same Spark pool definition will not be impacted. In addition, session-scoped R libraries do not persist across sessions. These libraries will be installed at the start of each session when the related installation commands are executed. Last, session-scoped R libraries are automatically installed across both the driver and worker nodes
66+
Session-scoped R libraries allow you to customize the R environment for a specific notebook session. When you install an R session-scoped library, only the notebook associated with that notebook session will have access to the newly installed libraries. Other notebooks or sessions using the same Spark pool definition will not be impacted. In addition, session-scoped R libraries do not persist across sessions. These libraries will be installed at the start of each session when the installation commands are executed. Last, session-scoped R libraries are automatically installed across both the driver and worker nodes.
6767

6868
### Install a package
6969

articles/synapse-analytics/spark/apache-spark-r-language.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ An Azure Synapse notebook is a web interface for you to create files that contai
2929

3030
To get started with R in Synapse notebooks, you can change the primary language by setting the **language option** to *SparkR (R)*.
3131

32-
![R Language Option.](./media/apache-spark-data-viz/r-language-option.png#lightbox)
32+
![Screenshot of the R language option.](./media/apache-spark-data-viz/r-language-option.png#lightbox)
3333

34-
In addition, you can multiple languages in one notebook by specifying the language magic command at the beginning of a cell.
34+
In addition, you can use multiple languages in one notebook by specifying the language magic command at the beginning of a cell.
3535

3636
```r
3737
%%sparkr
@@ -68,8 +68,7 @@ For example, users can install an R library from CRAN and CRAN snapshots. In the
6868
install.packages("highcharter", repos = "https://cran.microsoft.com/snapshot/2021-07-16/")
6969
```
7070

71-
To learn more about how to manage session R libraries, you can visit the following article:
72-
- [Manage R session packages](./apache-spark-manage-session-packages.md#session-scoped-r-packages-preview)
71+
To learn more about how to manage session R libraries, you can visit the following article: [manage R session packages](./apache-spark-manage-session-packages.md#session-scoped-r-packages-preview)
7372

7473
## Notebook Utilities
7574

@@ -82,8 +81,7 @@ library(notebookutils)
8281
mssparkutils.fs.help()
8382
```
8483

85-
You can learn more about the supported MSSparkUtils commands by vising the following article:
86-
- [Use Microsoft Spark Utilities](./microsoft-spark-utilities.md)
84+
You can learn more about the supported MSSparkUtils commands by visiting the following article: [use Microsoft Spark Utilities](./microsoft-spark-utilities.md)
8785

8886
## Use SparkR
8987

0 commit comments

Comments
 (0)