Ler um arquivo CSV do github para o R

Eu estou tentando ler um arquivo CSV do github para o R:

latent.growth.data <- read.csv("https://github.com/aronlindberg/latent_growth_classes/blob/master/LGC_data.csv")

No entanto, isso me dá:

Error in file(file, "rt") : cannot open the connection
In addition: Warning message:
In file(file, "rt") : unsupported URL scheme

eu tentei?read.csv, ?download.file, getURL (que só retornou HTML estranho), bem como omanual de importação de dados, mas ainda não consegue entender como fazê-lo funcionar.

O que estou fazendo de errado?

questionAnswers(7)

yourAnswerToTheQuestion