This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas as pd | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| from matplotlib.patches import Patch | |
| from pandas import Timestamp | |
| ##### DATA ##### | |
| data = {'Task': {0: 'TSK M', | |
| 1: 'TSK N', | |
| 2: 'TSK L', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import kivy | |
| kivy.require('1.8.0') | |
| from kivy.app import App | |
| from kivy.lang import Builder | |
| from jnius import autoclass | |
| PythonActivity = autoclass('org.renpy.android.PythonActivity') | |
| View = autoclass('android.view.View') | |
| Params = autoclass('android.view.WindowManager$LayoutParams') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| logconfig = { | |
| "version": 1, | |
| "disable_existing_loggers": 0, | |
| "root": { | |
| "level": "DEBUG", | |
| "handlers": [ | |
| "console", | |
| "file", | |
| "debugfile" | |
| ] |