Created
November 6, 2018 13:50
-
-
Save eastlondoner/35427b68c71d66bdb210396c033e174a to your computer and use it in GitHub Desktop.
Neo4J Training.ipynb
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
| { | |
| "nbformat": 4, | |
| "nbformat_minor": 0, | |
| "metadata": { | |
| "colab": { | |
| "name": "Neo4J Training.ipynb", | |
| "version": "0.3.2", | |
| "provenance": [], | |
| "private_outputs": true, | |
| "include_colab_link": true | |
| }, | |
| "kernelspec": { | |
| "name": "python3", | |
| "display_name": "Python 3" | |
| } | |
| }, | |
| "cells": [ | |
| { | |
| "cell_type": "markdown", | |
| "metadata": { | |
| "id": "view-in-github", | |
| "colab_type": "text" | |
| }, | |
| "source": [ | |
| "<a href=\"https://colab.research.google.com/gist/eastlondoner/35427b68c71d66bdb210396c033e174a/neo4j-training.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>" | |
| ] | |
| }, | |
| { | |
| "metadata": { | |
| "id": "mflnqHyrRFXb", | |
| "colab_type": "text" | |
| }, | |
| "cell_type": "markdown", | |
| "source": [ | |
| "# Data Science and Machine Learning Training\n", | |
| "\n", | |
| "\n", | |
| "Welcome to this online course on Data Science and Machine Learning with Neo4j.\n", | |
| "This course will take approximately 90 minutes to complete.\n", | |
| "\n", | |
| "You will learn:\n", | |
| "\n", | |
| "* How to integrate Neo4j with popular Python libraries such as Pandas and matplotlib\n", | |
| "* How to build a similarity graph\n", | |
| "* How to use that similarity graph as part of kNN predictions\n", | |
| "* How to execute Linear Regression on graph data\n", | |
| "* Graph Embeddings\n", | |
| "\n", | |
| "We'll be using a rental listing dataset for the examples.\n", | |
| "It's already been loaded into Neo4j so we won't be covering anything related to data import in this session.\n" | |
| ] | |
| }, | |
| { | |
| "metadata": { | |
| "id": "DZTEqdRVRcL5", | |
| "colab_type": "code", | |
| "colab": {} | |
| }, | |
| "cell_type": "code", | |
| "source": [ | |
| "!pip install py2neo pandas matplotlib" | |
| ], | |
| "execution_count": 0, | |
| "outputs": [] | |
| }, | |
| { | |
| "metadata": { | |
| "id": "mA_ws8XnRO-W", | |
| "colab_type": "code", | |
| "colab": {} | |
| }, | |
| "cell_type": "code", | |
| "source": [ | |
| "%matplotlib inline\n", | |
| "\n", | |
| "from py2neo import Graph\n", | |
| "import pandas as pd\n", | |
| "\n", | |
| "import matplotlib\n", | |
| "import matplotlib.pyplot as plt\n", | |
| "plt.style.use('fivethirtyeight')" | |
| ], | |
| "execution_count": 0, | |
| "outputs": [] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment