The following Table displays data on the geographical distribution of COVID-19 cases in 15 countries as of March 20, 2020.
Table1
|
Country |
Cases |
|
Uruguay |
15 |
|
Uzbekistan |
0 |
|
Venezuela |
0 |
|
Vietnam |
9 |
|
Afghanistan |
0 |
|
Albania |
4 |
|
Argentina |
18 |
|
Armenia |
37 |
|
Australia |
111 |
|
Austria |
314 |
|
Azerbaijan |
6 |
|
Bahrain |
19 |
|
Bangladesh |
2 |
|
Belarus |
10 |
|
Belgium |
243 |
Using Excel,

From this chaet we can clearly identify that Austria and Belgium are countries which reported most number of cases.
Five Number Summary of Cases

q1= 1st Quartile
q3= 3rd Quartile
The following Table displays data on the geographical distribution of COVID-19 cases in 15 countries as...
Write a Java program that will read in this XLS file
and store them in an ArrayList or LinkedList or HashMap
Ask user to input what country they wish to search for
and then output the country population.
Also ask user which other countries they wish to
compare. then compare the two countries by outputting both country
population
NOTE: THIS IS AN XLS FILE
F9 Population 1 Country 2 31056997 3581655 32930091 57794 71201 12127071 13477 69108 39921833 2976372 71891...
Country Continent GDP (millions of US$) Afghanistan Asia 18,181 Albania Europe 12,847 Algeria Africa 190,709 Angola Africa 100,948 Argentina South America 447,644 Australia Oceania 1,488,221 Austria Europe 419,243 Azerbaijan Europe 62,321 Bahrain Asia 26,108 Bangladesh Asia 113,032 Belarus Europe 55,483 Belgium Europe 513,396 Bolivia Africa 24,604 Bosnia and Herzegovina Europe 17,965 Botswana Africa 17,570 Brazil South America 2,492,908 Brunei Asia 15,533 Bulgaria Europe...
HI, I need help with this question. Please answer in details.
The data set is found below for each countries sugar consumption.
Thanks!
Country,Sugar, GDP, Continent Albania,15.3,4556.144342, Europe Argentina, 38.1,13693.70379, South America Armenia, 33.2,3421.704509, Europe Australia, 34.1, 62080.98242, Europe Austria, 37.9,49485.48219, Europe Azerbaijan,13.9,7189.691229, Europe Belarus,31.8,6305.773662, Europe Belgium, 41.4,46463.60378, Europe Bosnia and Herzegovina,13.4,4754.197861, Europe Brazil, 36.5,12576.19559, South America Canada, 31.3,51790.56695, North America Chile, 41.7,14510.9661, South America China, 6.2,5447.309378,Asia Colombia,23.2, 7124.54892, South America Czech Republic, 30.6,20584.92655, Europe Denmark, 38,59911.90466,Europe Egypt, 26.4,2972.583516,Africa Estonia,31.4,16982.30031,...
Carbon dioxide (CO2) emissions are widely believed to be a
driver of global climate change. In this problem set you will use
cross-section data to test what drives countries’ “carbon
footprints,” that is, their CO2 emissions. Is it population, or is
income the bigger culprit?
The data set “CO2 by country 2010 sh S17” contains data on a
sample of countries’ CO2 emissions, in kilotons; population, in
millions; and gross national income (GNI), in millions of US
dollars, for the...
HI, I need help with answering these questions. Please explain
and answer all parts. Data for all the countries and then the
question at the bottom.
Sugar Consumption Per Capita.csv Country Albania Argentina Armenia Australia Austria Azerbaijan Belarus Belgium Bosnia and Herzegovina 13.4 4754.197861 Europe Brazil Canada Chile China Colombia Czech Republic Denmark Egypt Estonia Finland France Georgia Germany Ghana Greece Hungary Iceland India Indonesia Iran Sugar GDP Continent 15.3 4556.144342 Europe 38.1 13693.70379 South America 33.2 3421.704509 Europe 34.1...
DATA:
# happy2.py
import csv
def main():
happy_dict = make_happy_dict()
print_sorted_dictionary(happy_dict)
def make_happy_dict():
filename = "happiness.csv"
happy_dict={}
with open(filename, 'r') as infile:
csv_happy = csv.reader(infile)
infile.readline()
for line in csv_happy:
happy_dict[line[0]] = line[2]
return happy_dict
def lookup_happiness_by_country(happy_dict):
return
def print_sorted_dictionary(D):
if type(D) != type({}):
print("Dictionary not found")
return
print("Contents of dictionary sorted by key.")
print("Key","Value")
for key in sorted(D.keys()):
print(key, D[key])
main()
"happines.csv"
Country,Year of Estimate,Happiness Index
Afghanistan,2018,2.694303274
Albania,2018,5.004402637
Algeria,2018,5.043086052
Angola,2014,3.794837952
Argentina,2018,5.792796612
Armenia,2018,5.062448502
Australia,2018,7.17699337
Austria,2018,7.396001816
Azerbaijan,2018,5.167995453
Bahrain,2017,6.227320671
Bangladesh,2018,4.499217033...
22 Use data_Americas. Plot year vs gdpPercap. Scale gdpPercap by log10. Color the data by country. 23 Use data_Americas. Plot year vs gdpPercap. Scale gdpPercap by log10. Color the data by country and size by pop. Looking for the answers in R command codes. 1952 1957 1962 1967 1972 1977 1982 1987 1992 1997 2002 2007 142 142 142 142 142 142 142 142 142 142 142 142 > table(gapminder$country) Afghanistan Albania Algeria 12 12 12 Angola Argentina Australia 12...
12 Use data_2002. Use ggplot. Plot gdpPercap vs lifeExp. 13 Use data_2002. Use ggplot. Plot gdpPercap vs lifeExp by continent (color) 14 Use data_2002. Use ggplot. Plot gdpPercap vs lifeExp by continent and pop (color and size) 15 Get data for Europe in 2002. Call it data_Europe Looking for these problems in R command code answers. 1952 1957 1962 1967 1972 1977 1982 1987 1992 1997 2002 2007 142 142 142 142 142 142 142 142 142 142 142 142...
11.38 Building a multiple linear regression model. Let’s now build a model to predict the life-satisfaction score, LSI. (a) Consider a simple linear regression using GINI as the explanatory variable. Run the regression and summarize the results. Be sure to check assumptions. (b) Now consider a model using GINI and LIFE. Run the multiple regression and summarize the results. Again be sure to check assumptions. (c) Now consider a model using GINI, LIFE, and DEMOCRACY. Run the multiple regression and...
Will reward thumbs up 100% if works. thank you Pickling with Python code and Pandas code Do both pickling assignment in one Jupyter Notebook file. Python Pickle steps: Download the CSV file. Load into a Pandas DataFrame. Make the column ‘country’ the index. Print the header. Using Python code, pickle the DataFrame and name the file: PythonPickle. Load back the PythonPickle data into the DataFrame. Print the header. (Note both printed headers should match.) Pandas Pickle steps: Download the CSV...