slidescope

Exploratory Data Analysis of Coronavirus COVID-19 Dataset using Python Pandas

Sample Code Files for Project of Exploratory Data Analysis of Corona Virus Dataset using Python Pandas recovered = pd.read_csv(‘https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_19-covid-Recovered.csv’) confirmed = pd.read_csv(‘https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_19-covid-Confirmed.csv’) deaths = pd.read_csv(‘https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_19-covid-Deaths.csv’)

Digital-Marketing-for-Startups

Digital Marketing Course for Startup Business in India

Digital Marketing Course for Startup Business in India Nowadays online marketing is important for every business whether it’s a large organization or any small scale startup in India. We are offering our new syllabus specially oriented for emerging startups. We understand the need of Digital Marketing Course for Startup, it requires high mileage in a …

Digital Marketing Course for Startup Business in India Read More »

machine learning kya hai hindi

मशीन लर्निंग क्या है

मशीन लर्निंग – परिभाषा मशीन लर्निंग एक ऐसी तकनीक है जिसमे कंप्यूटर को इस तरह से प्रोग्राम किया जाता है की वो इनपुट डाटा के आधार पे खुद से आउटपुट डाटा को प्रेडिक्ट कर सके | दिए गए इनपुट के आधार पे खुद से सीख सके | सॉफ्टवेयर डेवलपमेंट में जरुरत के आधार पे प्रोग्राम …

मशीन लर्निंग क्या है Read More »

Maths Module in Python Language

How to Import Maths Module in Python Maths module is already included with python installation. To import any module in your program you must use: import <modulename> To import Math module write: >>>import math Example >>> print(pi) NameError: name ‘pi’ is not defined >>> import math >>> print(math.pi) 3.141592653589793 >>> print(pi) NameError: name ‘pi’ is …

Maths Module in Python Language Read More »