Browse Source

Proof of concept

master
Maxime Wack 6 years ago
parent
commit
b5eec2d597
1 changed files with 19 additions and 0 deletions
  1. +19
    -0
      app.R

+ 19
- 0
app.R View File

@@ -0,0 +1,19 @@
library(tidyverse)
library(httr)
library(rvest)
library(DT)

options(DT.options = list(paging = F,
searching = T,
info = F,
dom = "Bfrtip",
buttons = c("copy", "excel")))

url <- "https://en.wikipedia.org/wiki/Comparison_of_file_comparison_tools"

GET(url) %>%
content %>%
html_table(fill = T) %>%
reduce(inner_join) %>%
mutate_if(is.character, factor) %>%
datatable(filter = "top")

Loading…
Cancel
Save