Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. {
  2. "nbformat_minor": 1,
  3. "cells": [
  4. {
  5. "source": "# Capstone Project Notebook (IBM Data Science - Course 9 - Lab1)",
  6. "cell_type": "markdown",
  7. "metadata": {
  8. "collapsed": true
  9. }
  10. },
  11. {
  12. "source": "Create a new repository on your Github account and name it Coursera_Capstone. I have prepared a guide to walk you through the process of creating a repository and setting it up. For Mac users, click here. For Windows users, click here.\n\nNow, start a Jupyter Notebook using any platform that you are comfortable with and do the following:\n\n Write some markdown to explain that this notebook will be mainly used for the capstone project.\n Import the pandas library as pd.\n Import the Numpy library as np.\n Print the following the statement: Hello Capstone Project Course!\n\nPush the Notebook to your Github repository and submit a link to the notebook on your Github repository.",
  13. "cell_type": "markdown",
  14. "metadata": {}
  15. },
  16. {
  17. "source": "This **Capstone Project** is the first lab from the *Course 9 - Applied Data Science Capstone*.",
  18. "cell_type": "markdown",
  19. "metadata": {}
  20. },
  21. {
  22. "execution_count": 4,
  23. "cell_type": "code",
  24. "metadata": {},
  25. "outputs": [
  26. {
  27. "output_type": "stream",
  28. "name": "stdout",
  29. "text": "Hello Capstone Project Course!\n"
  30. }
  31. ],
  32. "source": "import pandas as pd\nimport numpy as np\nprint(\"Hello Capstone Project Course!\")"
  33. },
  34. {
  35. "execution_count": null,
  36. "cell_type": "code",
  37. "metadata": {},
  38. "outputs": [],
  39. "source": ""
  40. }
  41. ],
  42. "metadata": {
  43. "kernelspec": {
  44. "display_name": "Python 3.5",
  45. "name": "python3",
  46. "language": "python"
  47. },
  48. "language_info": {
  49. "mimetype": "text/x-python",
  50. "nbconvert_exporter": "python",
  51. "version": "3.5.5",
  52. "name": "python",
  53. "file_extension": ".py",
  54. "pygments_lexer": "ipython3",
  55. "codemirror_mode": {
  56. "version": 3,
  57. "name": "ipython"
  58. }
  59. }
  60. },
  61. "nbformat": 4
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement