Visualization of Covid-19 Data Using Tableau Public
Data Preparation BigQuery was used to prepare the data for visualization in Tableau Public. –Total death rate from Covid across the worldSELECT SUM(new_cases) as total_cases,SUM(new_deaths) AS total_deathsFROM Covid.DeathsWHERE continent IS NOT NULLORDER BY 1,2; –Death counts by continents SELECT location, SUM(new_deaths) AS total_deathsFROM Covid.DeathsWHERE continent IS NULLAND location NOT IN (‘World’, ‘European Union’, ‘International’, ‘High…