Skip to content

Commit 86738bb

Browse files
Adding links to improve navigation within our docs
1 parent 3e58b5d commit 86738bb

12 files changed

+18
-17
lines changed

docs/topics/data-analysis/data-analysis-connect-to-db.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[//]: # (title: Connect and retrieve data from databases)
22

3-
Kotlin Notebook offers capabilities for connecting to and retrieving data from various types of SQL databases, such as
3+
[Kotlin Notebook](kotlin-notebook-overview.md) offers capabilities for connecting to and retrieving data from various types of SQL databases, such as
44
MariaDB, PostgreSQL, MySQL, and SQLite.
55
Utilizing the [Kotlin DataFrame library](https://kotlin.github.io/dataframe/gettingstarted.html), Kotlin Notebook can establish
66
connections to databases, execute SQL queries, and import the results for further operations.

docs/topics/data-analysis/data-analysis-libraries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ different tasks in the data pipeline.
55

66
In addition to its own libraries, Kotlin is 100% interoperable with Java. This interoperability helps to leverage
77
the entire ecosystem of tried-and-true Java libraries with excellent performance. With this perk, you can easily use either Kotlin
8-
or Java libraries when working on Kotlin data projects.
8+
or Java libraries when working on [Kotlin data projects](data-analysis-overview.md).
99

1010
## Kotlin libraries
1111

docs/topics/data-analysis/data-analysis-notebooks-output-formats.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[//]: # (title: Output formats supported by Kotlin Notebook)
22

3-
Kotlin Notebook supports a variety of output types, including text, HTML, and images. With the help of external libraries,
3+
[Kotlin Notebook](kotlin-notebook-overview.md) supports a variety of output types, including text, HTML, and images. With the help of external libraries,
44
you can expand your output options and visualize your data with charts, spreadsheets, and more.
55

66
Each output is a JSON object that maps the [Jupiter MIME type](https://jupyterlab.readthedocs.io/en/latest/user/file_formats.html)
@@ -288,6 +288,7 @@ You can create various charts directly in your Kotlin Notebook to visualize your
288288

289289
## What's next
290290

291-
* [Visualize data using the DataFrame and Kandy libraries](data-analysis-visualization.md)
292-
* [Retrieve data from the CSV and JSON files](data-analysis-work-with-data-sources.md)
293-
* [Check out the list of recommended libraries](data-analysis-libraries.md)
291+
* [Visualize data using the DataFrame and Kandy libraries](data-analysis-visualization.md).
292+
* [Learn more about rendering and displaying rich output in Kotlin Notebook](https://www.jetbrains.com/help/idea/kotlin-notebook.html#render-rich-output).
293+
* [Retrieve data from the CSV and JSON files](data-analysis-work-with-data-sources.md).
294+
* [Check out the list of recommended libraries](data-analysis-libraries.md).

docs/topics/data-analysis/data-analysis-visualization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Kotlin offers an all-in-one-place solution for powerful and flexible data visualization, providing an intuitive way to present and explore data
44
before diving into complex models.
55

6-
This tutorial demonstrates how to create different chart types in IntelliJ IDEA using [Kotlin Notebook](https://plugins.jetbrains.com/plugin/16340-kotlin-notebook) with
6+
This tutorial demonstrates how to create different chart types in IntelliJ IDEA using [Kotlin Notebook](kotlin-notebook-overview.md) with
77
the [Kandy](https://kotlin.github.io/kandy/welcome.html) and [Kotlin DataFrame](https://kotlin.github.io/dataframe/gettingstarted.html) libraries.
88

99
## Before you start

docs/topics/data-analysis/data-analysis-work-with-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[//]: # (title: Retrieve data from web sources and APIs)
22

3-
Kotlin Notebook provides a powerful platform for accessing and manipulating data from various web sources and APIs.
3+
[Kotlin Notebook](kotlin-notebook-overview.md) provides a powerful platform for accessing and manipulating data from various web sources and APIs.
44
It simplifies data extraction and analysis tasks by offering an iterative environment where every step can be visualized
55
for clarity. This makes it particularly useful when exploring APIs you are not familiar with.
66

docs/topics/data-analysis/data-analysis-work-with-data-sources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[//]: # (title: Retrieve data from files)
22

3-
Kotlin Notebook, coupled with the [Kotlin DataFrame library](https://kotlin.github.io/dataframe/gettingstarted.html), enables
3+
[Kotlin Notebook](kotlin-notebook-overview.md), coupled with the [Kotlin DataFrame library](https://kotlin.github.io/dataframe/gettingstarted.html), enables
44
you to work with both non-structured and structured data. This combination offers the flexibility to transform non-structured data,
55
such as data found in TXT files, into structured datasets.
66

docs/topics/data-analysis/get-started-with-kotlin-notebooks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[//]: # (title: Get started with Kotlin Notebook)
22

3-
Kotlin Notebook is an interactive tool that lets you mix code, visuals, and markdown in one document.
3+
[Kotlin Notebook](kotlin-notebook-overview.md) is an interactive tool that lets you mix code, visuals, and markdown in one document.
44
You can use notebooks to write and execute code in sections known as _code cells_, see the results instantly, and write down your thoughts.
55
This setup makes it an excellent tool for rapid prototyping, analytics, and data science.
66

docs/topics/data-analysis/kotlin-notebook-add-dependencies.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</p>
99
</tldr>
1010

11-
You've already created your first Kotlin Notebook! Now let's learn how to add dependencies to libraries, which
11+
You've already created your first [Kotlin Notebook](kotlin-notebook-overview.md)! Now let's learn how to add dependencies to libraries, which
1212
is necessary to unlock advanced features.
1313

1414
> The Kotlin standard library can be used out of the box, so you don't have to import it.
@@ -17,7 +17,7 @@ is necessary to unlock advanced features.
1717

1818
You can load any library from the Maven repository by specifying its coordinates using Gradle-style
1919
syntax in any code cell.
20-
However, Kotlin Notebook has a simplified method to load popular libraries in the form of the `%use` statement:
20+
However, Kotlin Notebook has a simplified method to load popular libraries in the form of the [`%use` statement](https://www.jetbrains.com/help/idea/kotlin-notebook.html#import-libraries):
2121

2222
```kotlin
2323
// Replace libraryName with the library dependency you want to add
@@ -111,5 +111,5 @@ This is just a glimpse into what you can achieve with Kotlin Notebook and its [s
111111
## What's next
112112
113113
* See more details about [adding dependencies to your Kotlin Notebook](https://www.jetbrains.com/help/idea/kotlin-notebook.html#add-dependencies).
114-
* For a more extensive guide using the Kotlin DataFrame library, see [Retrieve data from files](data-analysis-work-with-data-sources.md)
114+
* For a more extensive guide using the Kotlin DataFrame library, see [Retrieve data from files](data-analysis-work-with-data-sources.md).
115115
* For an extensive overview of tools and resources available for data science and analysis in Kotlin, see [Kotlin and Java libraries for data analysis](data-analysis-libraries.md).

docs/topics/data-analysis/kotlin-notebook-create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</p>
99
</tldr>
1010

11-
Here, you will learn how to create your first Kotlin Notebook, perform simple operations, and run code cells.
11+
Here, you will learn how to create your first [Kotlin Notebook](kotlin-notebook-overview.md), perform simple operations, and run code cells.
1212

1313
## Create an empty project
1414

docs/topics/data-analysis/kotlin-notebook-set-up-env.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</p>
99
</tldr>
1010

11-
Before you create your first Kotlin Notebook, you need to set up an environment.
11+
Before you create your first [Kotlin Notebook](kotlin-notebook-overview.md), you need to set up an environment.
1212

1313
## Set up the environment
1414

0 commit comments

Comments
 (0)