Skip to content

Instantly share code, notes, and snippets.

@fouadyared
fouadyared / items.py
Last active June 28, 2017 14:22
Files for "Harmful ingredients and added sugars" Web Scraping Project (by Fouad Yared)
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()
@fouadyared
fouadyared / global.R
Created May 1, 2017 01:07
Files for "University Return on Investment" Shiny App (by Fouad Yared)
library(shiny)
library(shinyBS)
library(shinydashboard)
library(leaflet)
library(ggplot2)
library(dplyr)
library(plotly)
library(RColorBrewer)
library(geojsonio)
library(data.table)