You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
library(TM)
library(tidyverse)
# choose words you want to remove from provider namesstopwords= c("HOSPITAL",
"NHS",
"FOUNDATION",
"TRUST",
"GROUP",
"SURGICAL",
"CENTRE")
# remove words from site namesdf$org_short<- removeWords(df$organisation_name, stopwords)
# removes extra spaces from site namesdf$org_short<- str_squish(df$org_short)
The text was updated successfully, but these errors were encountered:
Example from Simon Wellesley-Miller:
The text was updated successfully, but these errors were encountered: