MariaDB vs MySQL – Comparison
In this article you will find the comparison between MariaDB vs MySQL. MariaDB MariaDB is a community-developed, commercially supported fork of the MySQL RDBMS, It is intended to remain free and open-source software under the GNU General Public License. Made by the original developers of MySQL. MySql MySQL is the most popular Open Source SQL …
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 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 »
K means clustering algorithm example using Python
K Means Clustering is an algorithm of Unsupervised Learning. You can apply this algorithm on datasets without labeled output data.Only Input data is there an we have a goal of finding regularities in data to group or cluster like items together. You can copy the code an run it line by line in Jupyter Notebook. …
K means clustering algorithm example using Python Read More »
How to plot Boxplot in Python
A box plot is used to visualize 5 values in a dataset for the selected column(s): Minimum Value First Quartile or 25% Median (Second Quartile) or 50% Third Quartile or 75% Maximum value Box Plot is also known as Box and Whisker Plot. Steps – Load the dataset using Pandas dataframe Select any column to …
Magento Website ka Seo kaise kare
How to do SEO of a magento website Go to this URL where there is a demo of magento 139.162.47.20/magento23/admin And follow the instructions in this video :
मशीन लर्निंग क्या है
मशीन लर्निंग – परिभाषा मशीन लर्निंग एक ऐसी तकनीक है जिसमे कंप्यूटर को इस तरह से प्रोग्राम किया जाता है की वो इनपुट डाटा के आधार पे खुद से आउटपुट डाटा को प्रेडिक्ट कर सके | दिए गए इनपुट के आधार पे खुद से सीख सके | सॉफ्टवेयर डेवलपमेंट में जरुरत के आधार पे प्रोग्राम …
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 …
Typecasting in Python – Changing Data Types in Python
Typecasting in Python It is the process of changing one datatype to another data type. Functions used to do typecasting. str(x) – To change x to string int(x) – To change x to integer ( x must be float or bool but not complex or string) float(x) – To change x to float ( x …
Typecasting in Python – Changing Data Types in Python Read More »


