Beyond and Within EDA Introduction This blog is the continuation of the previous blog post A General Way of Doing EDA. Please follow that before reading this blog. Once we got the knowledge of the data like its properties and features, we can move ahead by taking that knowledge to make some sort of inference. […]
Search Results for: eda
A General Way to Perform an EDA
EDA: Introduction Hello everyone, welcome back to another new blog where we will explore different ideas and concept one could perform while performing an EDA. In simple words, this blog is a simple walk-through of an average EDA process which might include (in top down order): Data Loading: From various sources (remote, local) and various […]
EDA on Nepali News Data
EDA on News Data Hello everyone, in this blog, we are going to perform EDA on Nepali News data that I scraped back in 2021. EDA is the basic step done in any Data Science project and here, we are going to perform simple analysis like counts of title, words and news in category. Import […]
R Exercise: Working with Data from JSON API and Performing EDA
Import any data from JSON API Welcome to our data exploration journey! 🚀 In this exciting venture, we’re harnessing the power of data from the renowned source https://data.askbhunte.com/api/v1/covid. Our toolkit is all set, and we’re armed with two remarkable packages: jsonlite: This versatile gem brings JSON data and R data types together in a harmonious […]
How to do Data Science Project
Data science project can be a challenging but rewarding process. By following the steps we can use in this blog, you can work through the project in an organized and effective way, and ultimately arrive at a solution to your problem. Previously, we wrote blogs on many machine learning algorithms (Classification, Predication) as well as […]
News Classification with Simple Neural Network
News Classification with Simple Neural Network is one of the application of Deep Learning. And here in this part of the blog, I am going to perform a Nepali News Classification. Before jumping into the main part, I would love to share some of my previous contents based upon which this blog has been written. […]
Taking Data Apps into WebApp: Using Streamlit, Plotly, and Python
Introduction From the past 2 stories of a data and its journey to confess the insights, we have explored several areas and to point out few: We have done EDA based on descriptive and inferential part of the statistics to find strong evidences, relationships and facts about the data. We used some of valuable insights […]
Tweet Scraping with Tweepy
Tweet Scraping can be done with different ways but one of the reliable ones is using Tweepy and Tweeter’s developer API. In this blog we are going to explore how we can do Tweet Scraping using Twitter’s API and Tweepy. The API calls are handled by Tweepy and we only need to give it Keys. […]
Python for Stock Market Analysis: Getting Started into Timeseries Analysis
Introduction This is the part 4 of our Python for Stock Market Analysis series and here, we will be getting started with timeseries analysis. This part will not be exploring any prediction techniques yet as we will explore fundamental concepts in timeseries. Making Things Ready Here, we will import Pandas for data analysis, install as […]
Central Tendency vs Dispersion
Hello everyone, welcome back! In this blog we will again focus into the some of widely used central tendency techniques and then measure of spread in the Statistical Analysis of the EDA part. If you are looking for a brief walk-through of a Statistical Data Analysis in Data Science please refer to this blog of […]