Global Exchange Rates (Monthly Update)
Exchange rates of US Dollar to major foreign currencies in the past 10 years
@kaggle.cvengr_us_dollar_exchange_rates
Exchange rates of US Dollar to major foreign currencies in the past 10 years
@kaggle.cvengr_us_dollar_exchange_rates
The dataset describes the exchange rates of most foreign currencies to US Dollar in the past years, i.e. 1 USD = x EUR
The dataset dates back as old as 10 years.
The economy has not been booming in recent years, so it could be interesting to look at the trends of some exchange rates and gain some insight out of it because exchange rates can be a greate indicator of the economy.
If you downloaded the first version, you need to do a df.T or df.transpose() because I swapped the columns and rows starting from this version. The reason is with dates in column names, Kaggle cannot generate a dataset preview because there are too many columns.
CREATE TABLE exchange_rate (
"unnamed_0" TIMESTAMP -- Unnamed: 0,
"eur" DOUBLE,
"gbp" DOUBLE,
"inr" DOUBLE,
"aud" DOUBLE,
"cad" DOUBLE,
"sgd" DOUBLE,
"chf" DOUBLE,
"myr" DOUBLE,
"jpy" DOUBLE,
"cny" DOUBLE,
"ars" DOUBLE,
"bhd" DOUBLE,
"bwp" DOUBLE,
"brl" DOUBLE,
"bnd" DOUBLE,
"bgn" DOUBLE,
"clp" DOUBLE,
"cop" DOUBLE,
"hrk" DOUBLE,
"czk" DOUBLE,
"dkk" DOUBLE,
"hkd" DOUBLE,
"huf" DOUBLE,
"isk" DOUBLE,
"idr" DOUBLE,
"irr" DOUBLE,
"ils" DOUBLE,
"kzt" DOUBLE,
"krw" DOUBLE,
"kwd" DOUBLE,
"lyd" DOUBLE,
"mur" DOUBLE,
"mxn" DOUBLE,
"npr" DOUBLE,
"nzd" DOUBLE,
"nok" DOUBLE,
"omr" DOUBLE,
"pkr" DOUBLE,
"php" DOUBLE,
"pln" DOUBLE,
"qar" DOUBLE,
"ron" DOUBLE,
"rub" DOUBLE,
"sar" DOUBLE,
"zar" DOUBLE,
"lkr" DOUBLE,
"sek" DOUBLE,
"twd" DOUBLE,
"thb" DOUBLE,
"ttd" DOUBLE,
"try" DOUBLE,
"aed" DOUBLE,
"vef" DOUBLE
);Anyone who has the link will be able to view this.