This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Install packages if you don't already have them | |
install.packages(c("stringr", "igraph"), dependencies = TRUE) | |
## Load the packages | |
library(stringr) | |
library(igraph) | |
## Read in the data | |
queries <- read.csv("~/Downloads/queries.csv") | |
tables <- read.csv("~/Downloads/tables.csv") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Install packages if you don't already have them | |
install.packages(c("stringr", "tm", "igraph"), dependencies = TRUE) | |
## Load the packages | |
library(stringr) | |
library(tm) | |
library(igraph) | |
## Read in the data |