Thursday, October 25, 2018

IMDB movies Year wise Rating Comparison (Data Analysis) Python

thumbnail
Code: import requests import bs4 from matplotlib import pyplot as plt yearDict = {} def fetch ( year , counting = 100 ):...

Popular Singler on Top List (Data Analysis Gaana) Python

thumbnail
Screenshots: Code: import requests import bs4 # from matplotlib import pyplot as plt artistList = {} # def ploting()...
Monday, October 15, 2018

Movie Sentiment Analysis (Java)

thumbnail
Sentiment Analysis Background Sentiment analysis is the process of using software to classify a piece of text into a category that reflec...
Wednesday, October 10, 2018

CD Store Management Python (Simple Approach)

thumbnail
ScreenShots : Code: listCD = [] def sortByIndex ( index ): for i in range ( 0 , len (listCD)): for j in...
Monday, October 8, 2018

CD Store Management System Python

thumbnail
Assignment: Function SortByArtist Input: List of CDs Output: Updates the list of CDs so th...