We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi -- Noticed a few "within season" inconsistencies for team names that lead to incorrect league tables.
Some suggestions...hard to know which name is the correct to override with but this will at least fix the inconsistency.
FRA$home[FRA$home == "Red Star Olympique Audonien" & FRA$Season == 1945] <- "Red Star Olympique" FRA$visitor[FRA$visitor == "Red Star Olympique Audonien" & FRA$Season == 1945] <- "Red Star Olympique"
FRA$home[FRA$home == "AS Cannes" & FRA$Season == 1946] <- "AS Cannes-Grasse" FRA$visitor[FRA$visitor == "AS Cannes" & FRA$Season == 1946] <- "AS Cannes-Grasse"
FRA$home[FRA$home == "Brest Armorique FC" & FRA$Season == 1981] <- "Stade Brest" FRA$visitor[FRA$visitor == "Brest Armorique FC" & FRA$Season == 1981] <- "Stade Brest"
FRA$home[FRA$home == "Racing Club de France" & (FRA$Season == 1986 | FRA$Season == 1988)] <- "Matra Racing" FRA$visitor[FRA$visitor == "Racing Club de France" & (FRA$Season == 1986 | FRA$Season == 1988)] <- "Matra Racing"
FRA$home[FRA$home == "Stade Brest" & FRA$Season == 1990] <- "Brest Armorique FC" FRA$visitor[FRA$visitor == "Stade Brest" & FRA$Season == 1990] <- "Brest Armorique FC"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi -- Noticed a few "within season" inconsistencies for team names that lead to incorrect league tables.
Some suggestions...hard to know which name is the correct to override with but this will at least fix the inconsistency.
FRA$home[FRA$home == "Red Star Olympique Audonien" & FRA$Season == 1945] <- "Red Star Olympique"
FRA$visitor[FRA$visitor == "Red Star Olympique Audonien" & FRA$Season == 1945] <- "Red Star Olympique"
FRA$home[FRA$home == "AS Cannes" & FRA$Season == 1946] <- "AS Cannes-Grasse"
FRA$visitor[FRA$visitor == "AS Cannes" & FRA$Season == 1946] <- "AS Cannes-Grasse"
FRA$home[FRA$home == "Brest Armorique FC" & FRA$Season == 1981] <- "Stade Brest"
FRA$visitor[FRA$visitor == "Brest Armorique FC" & FRA$Season == 1981] <- "Stade Brest"
FRA$home[FRA$home == "Racing Club de France" & (FRA$Season == 1986 | FRA$Season == 1988)] <- "Matra Racing"
FRA$visitor[FRA$visitor == "Racing Club de France" & (FRA$Season == 1986 | FRA$Season == 1988)] <- "Matra Racing"
FRA$home[FRA$home == "Stade Brest" & FRA$Season == 1990] <- "Brest Armorique FC"
FRA$visitor[FRA$visitor == "Stade Brest" & FRA$Season == 1990] <- "Brest Armorique FC"
The text was updated successfully, but these errors were encountered: