literature analysis with spatial help...6/17/2018 literature analysis with spatial help 3/ 13 Web...

13
6/17/2018 literature analysis with spatial help http://127.0.0.1:3132/second.Rmd#1 1/13 literature analysis with spatial help

Transcript of literature analysis with spatial help...6/17/2018 literature analysis with spatial help 3/ 13 Web...

Page 1: literature analysis with spatial help...6/17/2018 literature analysis with spatial help  3/ 13 Web Scraping discography - HTML parser {Beautiful Soup / Rvest}

6/17/2018 literature analysis with spatial help

http://127.0.0.1:3132/second.Rmd#1 1/13

literature analysis with spatialhelp

Page 2: literature analysis with spatial help...6/17/2018 literature analysis with spatial help  3/ 13 Web Scraping discography - HTML parser {Beautiful Soup / Rvest}

6/17/2018 literature analysis with spatial help

http://127.0.0.1:3132/second.Rmd#1 2/13

Introduction

Make use of the combination of NLP (NER) and spatial analysis in thehumanities.

Big-Ish Data

Data Scraping

Data Cleaning

Tools Integration

NLP

Cartography

Visualisation

Sharing

·

·

·

·

·

·

·

·

2/13

Page 3: literature analysis with spatial help...6/17/2018 literature analysis with spatial help  3/ 13 Web Scraping discography - HTML parser {Beautiful Soup / Rvest}

6/17/2018 literature analysis with spatial help

http://127.0.0.1:3132/second.Rmd#1 3/13

Web Scraping

discography - HTML parser {Beautiful Soup / Rvest}

3/13

Page 4: literature analysis with spatial help...6/17/2018 literature analysis with spatial help  3/ 13 Web Scraping discography - HTML parser {Beautiful Soup / Rvest}

6/17/2018 literature analysis with spatial help

http://127.0.0.1:3132/second.Rmd#1 4/13

Web Scraping - cont

'https://api.genius.com/search?q='

Genius api·

4/13

Page 5: literature analysis with spatial help...6/17/2018 literature analysis with spatial help  3/ 13 Web Scraping discography - HTML parser {Beautiful Soup / Rvest}

6/17/2018 literature analysis with spatial help

http://127.0.0.1:3132/second.Rmd#1 5/13

Data Cleaning

all_songs <- apply(album_data_frame, 1 ,FUN = function(x) tryCatch( genius_album(artist = "Bob Dylan",album = x[1]), error = function(e) print(e))) album_names <- gsub(" ", "_", album_name[2:37]) # sort all lyrics for (i in 1:36){ assign(x = paste0(trimws(album_names[i])), tryCatch( aggregate(data.frame(all_songs[[i]]), list(data.frame(all_songs[[i]])[,1]), FUN = function(x) paste0(unique(x))), error = function(e) print(e))) print(album_names[i]) }

5/13

Page 6: literature analysis with spatial help...6/17/2018 literature analysis with spatial help  3/ 13 Web Scraping discography - HTML parser {Beautiful Soup / Rvest}

6/17/2018 literature analysis with spatial help

http://127.0.0.1:3132/second.Rmd#1 6/13

Integration

NER - Name Entity RecognitionPolyglot

integrating python in to R

·

·

6/13

Page 7: literature analysis with spatial help...6/17/2018 literature analysis with spatial help  3/ 13 Web Scraping discography - HTML parser {Beautiful Soup / Rvest}

6/17/2018 literature analysis with spatial help

http://127.0.0.1:3132/second.Rmd#1 7/13

Interactive Table

Search:

Showing 1 to 10 of 61 entries Previous 1 2 3 4 5 6 7 Next

album track_title place

1 Bob_Dylan Highway 51 wisconsin

2 Bob_Dylan House of the Risin' Sun orleans

3 Bob_Dylan Man of Constant Sorrow colorado

4 Bob_Dylan Pretty Peggy-O texas

5 Bob_Dylan Pretty Peggy-O louisiana

6 Bob_Dylan Talkin' New York greenwich

7 The_Freewheelin'_Bob_Dylan Down the Highway italy

8 The_Freewheelin'_Bob_Dylan Gamblin' Willie's Dead Man's Hand (Limited Release Only) orleans

9 The_Freewheelin'_Bob_Dylan Let Me Die In My Footsteps (Limited Release Only) nevada

10 The_Freewheelin'_Bob_Dylan Let Me Die In My Footsteps (Limited Release Only) mexico

7/13

Page 8: literature analysis with spatial help...6/17/2018 literature analysis with spatial help  3/ 13 Web Scraping discography - HTML parser {Beautiful Soup / Rvest}

6/17/2018 literature analysis with spatial help

http://127.0.0.1:3132/second.Rmd#1 8/13

Cartography

GeocodeNominatim - a search engine for OpenStreetMap data

google maps api 2,500 a day vs nominatim 1 a second (if neededpossible to install locally)

8/13

Page 9: literature analysis with spatial help...6/17/2018 literature analysis with spatial help  3/ 13 Web Scraping discography - HTML parser {Beautiful Soup / Rvest}

6/17/2018 literature analysis with spatial help

http://127.0.0.1:3132/second.Rmd#1 9/13

Visualisation

Slide with Leaflet map

9/13

+

Leaflet (http://leafletjs.com) | Map tiles by Stamen Design (http://stamen.com), CC BY 3.0 (http://creativecommons.org/licenses/by/3.0) — Mapdata © OpenStreetMap (http://www.openstreetmap.org/copyright)

Page 10: literature analysis with spatial help...6/17/2018 literature analysis with spatial help  3/ 13 Web Scraping discography - HTML parser {Beautiful Soup / Rvest}

6/17/2018 literature analysis with spatial help

http://127.0.0.1:3132/second.Rmd#1 10/13

Shiny Visualization

openingGeographical Digital Humanities

[email protected]

album

album

Data map

Show 10 entries Search:

Showing 1 to 8 of 8 entries Previous 1 Next

album track_title place

1 Bob_Dylan Highway 51 wisconsin

2 Bob_Dylan House of the Risin' Sun orleans

3 Bob_Dylan Man of Constant Sorrow colorado

4 Bob_Dylan Pretty Peggy-O texas

5 Bob_Dylan Pretty Peggy-O louisiana

6 Bob_Dylan Talkin' New York greenwich

12The_Times_They_Are_a-Changin'

The Lonesome Death of HattieCarroll

baltimore

13The_Times_They_Are_a-Changin'

The Lonesome Death of HattieCarroll

maryland

Bob_Dylan

The_Times_They_Are_a-Changin'

10/13

Page 11: literature analysis with spatial help...6/17/2018 literature analysis with spatial help  3/ 13 Web Scraping discography - HTML parser {Beautiful Soup / Rvest}

6/17/2018 literature analysis with spatial help

http://127.0.0.1:3132/second.Rmd#1 11/13

More examples - Responsa

11/13

Page 12: literature analysis with spatial help...6/17/2018 literature analysis with spatial help  3/ 13 Web Scraping discography - HTML parser {Beautiful Soup / Rvest}

6/17/2018 literature analysis with spatial help

http://127.0.0.1:3132/second.Rmd#1 12/13

More examples - Responsa

12/13

Page 13: literature analysis with spatial help...6/17/2018 literature analysis with spatial help  3/ 13 Web Scraping discography - HTML parser {Beautiful Soup / Rvest}

6/17/2018 literature analysis with spatial help

http://127.0.0.1:3132/second.Rmd#1 13/13

Sharing

More Examples General solutionGeneral Solution on a private server (http://104.236.8.216:3838/)

shiny

Rmarkdown

Digital Ocean

Github

·

·

·

·

13/13