Skip to content
Permalink
0a28308557
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
7 lines (7 sloc) 224 Bytes
#choose which football league
myleague = "E0"
#get data from www.football-data.co.uk
fname=paste0("http://www.football-data.co.uk/mmz4281/1920/",myleague,".csv")
football=read_csv(fname)
football
distinct(football, HomeTeam)