Skip to content

Commit

Permalink
Add IMDB SQL examples to Kotlin DataFrame README
Browse files Browse the repository at this point in the history
This commit adds references to IMDB SQL examples in both the idea examples and the notebook examples section of the README. These additions provide links and descriptions for showcasing how to convert SQL data to Kotlin DataFrame and perform analysis using Kotlin DataFrame and Kandy library.
  • Loading branch information
zaleslaw committed Jul 30, 2024
1 parent 958f1df commit 459f885
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Examples of Kotlin Dataframe

### Idea examples
* [movies](idea-examples/movies) Using 3 different [Access APIs](https://kotlin.github.io/dataframe/apilevels.html) to perform data cleaning task
* [movies](idea-examples/movies) Using 3 different [Access APIs](https://kotlin.github.io/dataframe/apilevels.html) to perform a data cleaning task
* [titanic](idea-examples/titanic)
* [youtube](idea-examples/youtube)
* [json](idea-examples/json) Using OpenAPI support in DataFrame's Gradle and KSP plugins to access data from [API guru](https://apis.guru/) in a type-safe manner
* [imdb sql database](https://github.com/zaleslaw/KotlinDataFrame-SQL-Examples) This project prominently showcases how to convert data from an SQL table to a Kotlin DataFrame
and how to transform the result of an SQL query into a DataFrame.

### Notebook examples

Expand Down Expand Up @@ -35,3 +37,7 @@ ___
___
* youtube ([notebook](notebooks/youtube/Youtube.ipynb)/[Datalore](https://datalore.jetbrains.com/view/notebook/uXH0VfIM6qrrmwPJnLBi0j)) –
Explore YouTube videos with YouTube REST API and Kotlin Dataframe

___
* imdb sql database ([notebook](https://github.com/zaleslaw/KotlinDataFrame-SQL-Examples/blob/master/notebooks/imdb.ipynb)) – In this notebook, we use Kotlin DataFrame and Kandy library to analyze data from [IMDB](https://datasets.imdbws.com/) (SQL dump for the MariaDB database with the name "imdb" could be downloaded by this [link](https://drive.google.com/file/d/10HnOu0Yem2Tkz_34SfvDoHTVqF_8b4N7/view?usp=sharing)).

0 comments on commit 459f885

Please sign in to comment.