# -*- coding: utf-8 -*- """ Created on Sat Oct 12 18:30:35 2019 @author: fhmkh """ # ============================================================================= # LINEAR REGRESSION # ============================================================================= ###################################### Required modules #######################…
Saikumar Eppili
updated on 24 Dec 2020
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by Saikumar Eppili (2)
Project 1
# -*- coding: utf-8 -*- """ Created on Tue Nov 17 14:28:10 2020 @author: Shalaka """ import pandas as pd import seaborn as sns import matplotlib.pyplot as plt import numpy as np data1=pd.read_csv('Stock_File_1.csv') data2=pd.read_csv('Stock_File_2.txt') unique1,counts1=np.unique(data1['Date'],return_counts=True) unique2,counts2=np.unique(data2['Date'],return_counts=True)…
24 Dec 2020 06:30 AM IST
Project 2
# -*- coding: utf-8 -*- """ Created on Sat Oct 12 18:30:35 2019 @author: fhmkh """ # ============================================================================= # LINEAR REGRESSION # ============================================================================= ###################################### Required modules #######################…
24 Dec 2020 06:27 AM IST