I have the following Pandas series:
>>> df.original_language.value_counts()
en 32269
fr 2438
it 1529
ja 1350
de 1080
...
la 1
jv 1
sm 1
gl 1
mt 1
Name: original_language, Length: 92, dtype: int64
4
I want to convert these language codes into their original names, for example
en >> English
ar >> Arabic
I looked up this question but it didn't help. If there are any packages required, please provide a source of how to install them using pip if possible.