...
AITB International Conference, 2019
Kathmandu, Nepal
My Youtube Channel
Please Subscribe
Flag of Nepal
Built in OpenGL
World Covid-19 Data Visualization
Choropleth map
Word Cloud in Python
With masked image
Tuesday, August 25, 2020
Monday, August 24, 2020
Saturday, August 22, 2020
Wednesday, August 19, 2020
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...
Friday, August 14, 2020
Covid-19 Data Visualization across the World using Choropleth map
By VIJAY YADAV August 14, 2020
Data science, Data Visulaization, Machine learning, Python No comments
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
By VIJAY YADAV August 14, 2020
Data science, Data Visulaization, Machine learning, Python No comments
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...