Guest User

Untitled

a guest
Oct 15th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. {
  2. "cells": [
  3. {
  4. "cell_type": "markdown",
  5. "metadata": {},
  6. "source": [
  7. "# Jupyter Notebook for Applied Data Sciences Capstone course"
  8. ]
  9. },
  10. {
  11. "cell_type": "code",
  12. "execution_count": 1,
  13. "metadata": {},
  14. "outputs": [],
  15. "source": [
  16. "import numpy as np # useful for many scientific computing in Python\n",
  17. "import pandas as pd # primary data structure library"
  18. ]
  19. },
  20. {
  21. "cell_type": "code",
  22. "execution_count": 2,
  23. "metadata": {},
  24. "outputs": [
  25. {
  26. "name": "stdout",
  27. "output_type": "stream",
  28. "text": [
  29. "Hello Capstone Project Course!\n"
  30. ]
  31. }
  32. ],
  33. "source": [
  34. "print('Hello Capstone Project Course!')"
  35. ]
  36. },
  37. {
  38. "cell_type": "code",
  39. "execution_count": null,
  40. "metadata": {},
  41. "outputs": [],
  42. "source": []
  43. }
  44. ],
  45. "metadata": {
  46. "kernelspec": {
  47. "display_name": "Python 3",
  48. "language": "python",
  49. "name": "python3"
  50. },
  51. "language_info": {
  52. "codemirror_mode": {
  53. "name": "ipython",
  54. "version": 3
  55. },
  56. "file_extension": ".py",
  57. "mimetype": "text/x-python",
  58. "name": "python",
  59. "nbconvert_exporter": "python",
  60. "pygments_lexer": "ipython3",
  61. "version": "3.6.5"
  62. }
  63. },
  64. "nbformat": 4,
  65. "nbformat_minor": 2
  66. }
Add Comment
Please, Sign In to add comment