Question: --Python Excersise-- a) Write a Pandas program to calculate the frequency counts of each unique value of a given series. The .value_counts() method can help
--Python Excersise--
a) Write a Pandas program to calculate the frequency counts of each unique value of a given series. The .value_counts() method can help you.
#Sample Output:
#Original Series:
#0 1
#1 7
#2 1
#3 6
#4 9
#5 1
#29 2
#30 9
#31 1
#32 2
#33 9
#34 2
#35 9
#36 0
#37 0
#38 4
#39 8
#dtype: object
#Sample output for frequency of each unique value of the said series.
#0 9
#2 7
#9 6
#1 5
#6 3
#8 3
#7 3
#3 2
#4 1
#5 1
#dtype: int64
b) Reverse the following data structures.
#- [3,5,61,37,84]
#- (500,60,79,85,93)
#- 'Reverse the following'
c) Calculate sum of the numbers from 200 until 900.
d) Download an HTML page and print at least 3 features (title, some paragraphs, etc.) of this page using BeautifulSoup.
e) Access a table on web using pandas.read_html() method. Print its first 10 rows. It can be a table from a Wikipedia page.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
