Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Examples of Kotlin DataFrame

IDEA project examples

The example projects in examples/projects always target the latest stable version of the library. Projects compatible with the latest dev/master version are located in the examples/projects/dev folder.

All examples are tested by the main project in debug mode when gradlew test is run (or manually bygradlew runBuildAllExampleFolders -Pkotlin.dataframe.debug=true). Android example projects, require the android.sdk.dir= property to be set.

Versions inside the example projects are overwritten automatically upon gradlew assemble (or manually by gradlew syncAllExampleFolders).

See the convention plugins README for more information.

Notebook examples


  • puzzles (notebook/Datalore) – Inspired by 100 pandas puzzles. You will go from the simplest tasks to complex problems where need to think. This notebook will show you how to solve these tasks with the Kotlin Dataframe in a laconic, beautiful style.

  • movies (notebook/Datalore) – In this notebook you can see the basic operations of the Kotlin DataFrame on data from movielens. You can take the data from the link.

  • netflix (notebook/Datalore) – Explore TV shows and movies from Netflix with the powerful Kotlin DataFrame API and beautiful visualizations from lets-plot.

  • github (notebook/Datalore) – This notebook shows the hierarchical dataframes look like and how to work with them.

  • titanic (notebook/Datalore) – Let's see how the new library will show itself on the famous Titanic dataset.

  • Financial Analyze of the top-12 German companies (notebook/Datalore) – Analyze key financial metrics for several major German companies.

  • wine (notebook/Datalore) – Wine. Kotlin DataFrame. KotlinDL. What came out of this can be seen in this notebook.

  • youtube (notebook/Datalore) – Explore YouTube videos with YouTube REST API and Kotlin DataFrame

  • imdb sql database (notebook) – In this notebook, we use Kotlin DataFrame and Kandy library to analyze data from IMDB (SQL dump for the MariaDB database with the name "imdb" could be downloaded by this link).

  • Feature Overviews notebook folder Overview of new features available a given version

The example notebooks always target the latest stable version of the library. Notebooks compatible with the latest dev/master version are located in the dev folder.

These dev versions are tested by the :dataframe-jupyter module.