View items.py
import scrapy | |
class FoodItem(scrapy.Item): | |
food_categories_text = scrapy.Field() | |
food_rating = scrapy.Field() | |
food_name = scrapy.Field() | |
food_category_text = scrapy.Field() | |
food_subcategory_text = scrapy.Field() | |
all_comments = scrapy.Field() | |
pos_neg_comment = scrapy.Field() |
View global.R
library(shiny) | |
library(shinyBS) | |
library(shinydashboard) | |
library(leaflet) | |
library(ggplot2) | |
library(dplyr) | |
library(plotly) | |
library(RColorBrewer) | |
library(geojsonio) | |
library(data.table) |