Hide clutter

This commit is contained in:
Andras Schmelczer 2022-08-08 08:28:53 +02:00
parent af5798ffa5
commit 7dbff652a6
No known key found for this signature in database
GPG key ID: 0EA1BC97D0AB076E
3 changed files with 10 additions and 2 deletions

8
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,8 @@
{
"files.exclude": {
"**/.env": true,
"**/__pycache__": true,
"**/.ipynb_checkpoints": true,
"**/.cache": true
}
}

View file

Can't render this file because it is too large.

View file

@ -16,7 +16,7 @@
"outputs": [],
"source": [
"!rm -f tracing_database.json\n",
"%pip install great-ai > /dev/null"
"%pip install --upgrade great-ai > /dev/null"
]
},
{
@ -27,7 +27,7 @@
"source": [
"import pandas as pd\n",
"\n",
"data = pd.read_csv('data.csv')\n",
"data = pd.read_csv('data/data.csv')\n",
"\n",
"pd.set_option(\"display.max_rows\", 30)\n",
"pd.set_option(\"display.max_columns\", 30)\n",