Skip to content

Commit

Permalink
v4 Jupyter Theme Changed & Notes added
Browse files Browse the repository at this point in the history
Jupyter Theme Changed & Notes added: Link to help with changing Jupyter theme to 'dark mode'
                                            link: https://www.youtube.com/watch?v=gjxrDf6Pp6M

                                            github link for shortcut for adding new line on jupyter:
                                            jupyter/notebook#3918

                                            df.iloc[:3,:2]
                                            .iloc notation and the Python list slicing syntax,
                                             we were able to select a slice of this DataFrame.

                                             Added a new file called Demo of Jupyter, just a mini file testing Jupyter
                                             Shift-Enter to auto start the program,
                                             esc-b to make a new line
  • Loading branch information
CyborgVillager committed Feb 9, 2020
1 parent feb05d6 commit 3ce374e
Show file tree
Hide file tree
Showing 4 changed files with 1,055 additions and 34 deletions.
16 changes: 14 additions & 2 deletions Version_Info.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,18 @@ v2 PyCharm & Jupyter Notebook: Just got started on Jupyter for learning a bit mo
from pycharm files to help organize a bit. As of now I'm going deep in A.I/machine development
this is going to be a blast!

--v3 DataFrame Pandas: testing some notes for using pandas and df for gathering data @ file dataset_for_jupyter.ipnb
v3 DataFrame Pandas: testing some notes for using pandas and df for gathering data @ file dataset_for_jupyter.ipnb

-wor:v4
--v4 Jupyter Theme Changed & Notes added: Link to help with changing Jupyter theme to 'dark mode'
link: https://www.youtube.com/watch?v=gjxrDf6Pp6M

github link for shortcut for adding new line on jupyter:
https://github.com/jupyter/notebook/issues/3918

df.iloc[:3,:2]
.iloc notation and the Python list slicing syntax,
we were able to select a slice of this DataFrame.

Added a new file called Demo of Jupyter, just a mini file testing Jupyter
Shift-Enter to auto start the program,
esc-b to make a new line
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"cells": [],
"metadata": {},
"nbformat": 4,
"nbformat_minor": 2
}
84 changes: 84 additions & 0 deletions python_machine_learning/py_chap1/Demo of Jupyter.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"import os"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"'D:\\\\PyProject\\\\GitRespo\\\\Ai_Dev_Intro\\\\Python_Machine_Learning\\\\python_machine_learning\\\\py_chap1'"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"os.getcwd()"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"dataset.py\n",
"dataset_for_jupyter.ipynb\n",
"Demo of Jupyter.ipynb\n",
"py_chap1_source\n",
"py0_requests.py\n"
]
}
],
"source": [
"!ls"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"file_two ="
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.4"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Loading

0 comments on commit 3ce374e

Please sign in to comment.