Sunday, August 16, 2020

Various features of Markdown in Jupyter Notebook

Output of Emphasis:Output of List:Output of Links:This is an example of link to my BlogOutput of Images:Output of table:Output of Blockquotes:Output of Horizontal Rule:Output of Youtube links:Output of Headers:Get the Github link he...

Web scrapping using a single line of code in python

We will scrap the data of wikipedia using a single line of code in python. No extra libraries are required. Only Pandas can do the job.Step 1: Install and import pandas libraryimport numpy as np Step 2: Read the data of web (here Wikipedia website) using pd.read_html('Website link here')[integer]df = pd.read_html('https://en.wikipedia.org/wiki/COVID-19_pandemic_by_country_and_territory')[1]Step...

Build a colorful Word Cloud in python using mask image

Word cloud is a data visualization tool in data science. It is very efficient to visualize various words in a text according to the quantum of their repetition within the text. The stopwords have been ignored while visualization. A text file called "skill.txt" has been used to visualize. Mask image of map of Nepal has been used to visualize the word cloud.The libraries required...

Covid-19 Data visualization across the world using Choropleth map

...

Covid-19 data visualization of Nepal using Choropleth map

...

Capstone project of Data Science - The battle of neighborhood in Dubai

...

Build colorful Word Cloud in python - Data Visualization

...

Best online Course for an absolute beginner of Data Science with certifi...

...

Web Scrapping using one line of code in python

...

Markdown in Jupyter Notebook

...

Friday, August 14, 2020

Covid-19 Data Visualization across the World using Choropleth map

IntroductionThis project visualizes the Covid-19 data (i.e. Total cases, Deaths and Recoveries) across various Provinces and Districts of Nepal as of 12th August, 2020. Geojson file of Nepal's states and districts have been used. Also python library i.e. Folium has been used to generate Choropleth map whose geo_data value is the geojson of Nepal.The libraries imported are:Data...

Covid-19 Data Visualization of Nepal using Choropleth map

IntroductionThis project visualizes the Covid-19 data (i.e. Total cases, Deaths and Recoveries) across various Provinces and Districts of Nepal as of 9th August, 2020. Geojson file of Nepal's states and districts have been used. Also python library i.e. Folium has been used to generate Choropleth map whose geo_data value is the geojson of Nepal.The libraries imported are:Data...

Thursday, August 6, 2020

How to download a PDF file in LinkedIn?

...