Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.35 KB | None | 0 0
  1. {
  2. "cells": [
  3. {
  4. "cell_type": "markdown",
  5. "metadata": {},
  6. "source": [
  7. "# Coursera Capstone: \"Battle of the Neighborhoods\"\n",
  8. "\n",
  9. "## Identifying Optimal Places for a Pizza Truck to Set Up Shop in San Diego"
  10. ]
  11. },
  12. {
  13. "cell_type": "markdown",
  14. "metadata": {},
  15. "source": [
  16. "> Introduction / Business Problem"
  17. ]
  18. },
  19. {
  20. "cell_type": "markdown",
  21. "metadata": {},
  22. "source": [
  23. "Food trucks have become increasingly popular as a way to serve unique cuisine in different places, especially in large cities. Ample opportunities exist to make a net profit provided they visit the right places, i.e., those that attract significant crowds of hungry people. Determining the best areas to set up shop and sell the most food requires knowledge of the type and popularity of other places to eat/drink nearby, which areas are low on food options, when and where large events occur that attract a lot of hungry people, etc. These efforts will focus on identifying good places for a pizza truck to visit in San Diego, California, with particular emphasis on bars and events."
  24. ]
  25. },
  26. {
  27. "cell_type": "markdown",
  28. "metadata": {},
  29. "source": [
  30. "> Data Plan & Description"
  31. ]
  32. },
  33. {
  34. "cell_type": "markdown",
  35. "metadata": {},
  36. "source": [
  37. " This project will retrieve, clean, and process data from the Foursquare API. It will then apply various machine learning techniques - including classification and clustering algorithms - to identify optimal places for a pizza truck to set up shop in San Diego. Intuition suggests seeking out bars, and other trending areas with large events, that don't offer food or have other popular established restaurants nearby. In other words, I seek to isolate venues where people would have a big crazing for pizza while minimizing the competition. Real-world data extracted from Foursquare are as of June 2019. From the Foursquare \"venues\" group, I will query the following endpoints: \"search\" to find existing venues in San Diego, \"trending\" and \"likes\" as a metric of their popularity, \"categories\" to determine their type, \"timeseries\" to see how their stats have vary throughout the year, \"similar\" to find similar venues, \"events\" to determine when they are likely to be busy with a lot of people, and \"menu\" to determine what items they offer. If I deem it necessary, I will also seek out other datasets to find recurring events such as Farmer's Markets that also attract large numbers of hungry people."
  38. ]
  39. },
  40. {
  41. "cell_type": "code",
  42. "execution_count": 2,
  43. "metadata": {},
  44. "outputs": [],
  45. "source": [
  46. "import pandas as pd\n",
  47. "import numpy as np"
  48. ]
  49. },
  50. {
  51. "cell_type": "code",
  52. "execution_count": 3,
  53. "metadata": {},
  54. "outputs": [
  55. {
  56. "name": "stdout",
  57. "output_type": "stream",
  58. "text": [
  59. "Hello Capstone Project Course!\n"
  60. ]
  61. }
  62. ],
  63. "source": [
  64. "print('Hello Capstone Project Course')"
  65. ]
  66. }
  67. ],
  68. "metadata": {
  69. "kernelspec": {
  70. "display_name": "Python 3",
  71. "language": "python",
  72. "name": "python3"
  73. },
  74. "language_info": {
  75. "codemirror_mode": {
  76. "name": "ipython",
  77. "version": 3
  78. },
  79. "file_extension": ".py",
  80. "mimetype": "text/x-python",
  81. "name": "python",
  82. "nbconvert_exporter": "python",
  83. "pygments_lexer": "ipython3",
  84. "version": "3.6.8"
  85. }
  86. },
  87. "nbformat": 4,
  88. "nbformat_minor": 2
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement