|
4 | 4 | It simplifies data extraction and analysis tasks by offering an iterative environment where every step can be visualized
|
5 | 5 | for clarity. This makes it particularly useful when exploring APIs you are not familiar with.
|
6 | 6 |
|
7 |
| -When used in conjunction with the [Kotlin DataFrame library](https://kotlin.github.io/dataframe/gettingstarted.html), Kotlin Notebook not only enables you to connect to and fetch |
| 7 | +When used in conjunction with the [Kotlin DataFrame library](https://kotlin.github.io/dataframe/home.html), Kotlin Notebook not only enables you to connect to and fetch |
8 | 8 | JSON data from APIs but also assists in reshaping this data for comprehensive analysis and visualization.
|
9 | 9 |
|
10 | 10 | > For Kotlin Notebook examples, see [DataFrame examples on GitHub](https://github.com/Kotlin/dataframe/blob/master/examples/notebooks/youtube/Youtube.ipynb).
|
@@ -106,7 +106,7 @@ The result is stored in the `df` variable:
|
106 | 106 |
|
107 | 107 | ## Clean and refine data
|
108 | 108 |
|
109 |
| -Cleaning and refining data are crucial steps in preparing your dataset for analysis. The [Kotlin DataFrame library](https://kotlin.github.io/dataframe/gettingstarted.html) |
| 109 | +Cleaning and refining data are crucial steps in preparing your dataset for analysis. The [Kotlin DataFrame library](https://kotlin.github.io/dataframe/home.html) |
110 | 110 | offers powerful functionalities for these tasks. Methods like [`move`](https://kotlin.github.io/dataframe/move.html),
|
111 | 111 | [`concat`](https://kotlin.github.io/dataframe/concatdf.html), [`select`](https://kotlin.github.io/dataframe/select.html),
|
112 | 112 | [`parse`](https://kotlin.github.io/dataframe/parse.html), and [`join`](https://kotlin.github.io/dataframe/join.html)
|
@@ -156,7 +156,7 @@ Each step is designed to refine the data, making it more suitable for [in-depth
|
156 | 156 | ## Analyze data in Kotlin Notebook
|
157 | 157 |
|
158 | 158 | After you've successfully [fetched](#fetch-data-from-an-api) and [cleaned and refined your data](#clean-and-refine-data)
|
159 |
| -using functions from the [Kotlin DataFrame library](https://kotlin.github.io/dataframe/gettingstarted.html), the next step |
| 159 | +using functions from the [Kotlin DataFrame library](https://kotlin.github.io/dataframe/home.html), the next step |
160 | 160 | is to analyze this prepared dataset to extract meaningful insights.
|
161 | 161 |
|
162 | 162 | Methods such as [`groupBy`](https://kotlin.github.io/dataframe/groupby.html) for categorizing data,
|
@@ -208,7 +208,7 @@ The results of the analysis:
|
208 | 208 |
|
209 | 209 | {width=700}
|
210 | 210 |
|
211 |
| -For more advanced techniques, see the [Kotlin DataFrame documentation](https://kotlin.github.io/dataframe/gettingstarted.html). |
| 211 | +For more advanced techniques, see the [Kotlin DataFrame documentation](https://kotlin.github.io/dataframe/home.html). |
212 | 212 |
|
213 | 213 | ## What's next
|
214 | 214 |
|
|
0 commit comments