Skip to content

Instantly share code, notes, and snippets.

@quinnpertuit
quinnpertuit / Visualise_Graph_Demo.ipynb
Created March 22, 2020 14:49 — forked from Vini2/Visualise_Graph_Demo.ipynb
Visualising Graph Data with python-igraph
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@quinnpertuit
quinnpertuit / linkedin.R
Created March 21, 2020 22:16 — forked from daattali/linkedin.R
Scraping Twitter and LinkedIn info in R
# Get a person's name, location, summary, # of connections, and skills & endorsements from LinkedIn
# URL of the LinkedIn page
user_url <- "https://www.linkedin.com/in/daattali"
# since the information isn't available without being logged in, the web
# scraper needs to log in. Provide your LinkedIn user/pw here (this isn't stored
# anywhere as you can see, it's just used to log in during the scrape session)
username <- "yourusername"
password <- "yourpassword"
@quinnpertuit
quinnpertuit / ShinyApp.R
Created September 6, 2019 22:10 — forked from nlddfn/ShinyApp.R
Web-scraping-ShinyApp
library(shiny)
library(shinydashboard)
library(dplyr)
library(tidyr)
library(plotly)
library(DT)
library(rPython)
library(pdftools)
python.load("helperP3.py")