
Importing data using Python
In today's world, there is a lot of data being generated from various devices. The format of data varies from flat files to tabular structure. In this post, we will be looking into python packages, for importing data using python. We will be looking at techniques to import following file types using python packages: Flat files - .txt, .csv files Pickled file Excel files SAS files STATA file HDF5 files mat file Relational database Reading data from web Let's get started with importing data from various file formats. ... Read More

Improving the Supervised Learning Model using Python
Typically in Machine Learning, we generate a Machine Learning model and once the model is generated we use multiple techniques to measure the accuracy of the model. But, the question that might be coming to your mind is: "The accuracy of the model doesn't match the expectations. What can I do to improve the accuracy of the model?" Valid thought. In this post, we will be looking at a few best practices to generate Models. In other words, we will be looking at techniques to tune the model. ... Read More

Simple Linear Regression detailed Explanation
Linear regression is one of the simple and popular used machine learning algorithms which focus on finding the best straight-line fit between the dependent variable or target variable and one or more independent variables. To learn more about algorithm working refer to the post. ... Read More

Mastering Smart Contract Development: Writing and Deploying Solidity Contracts using Solidity
Learn about how to develop a smart contract using solidity as a programming language on the online remix IDE. At the same time, this post also explains how to test the smart contract on a sample blockchain before deploying the smart contract on the real blockchain. ... Read More

Unlocking the Power of Natural Language Processing: An Introduction and Pipeline Framework for Solving NLP Tasks
Natural Language Processing (NLP) is the ability of a computer program to understand human language as it is spoken. Here in this post we discussed about NLTK and spaCy package which is used to perform NLP operations and it's pipeline. ... Read More

Part 2: Guide to build accurate Time Series Forecasting models - Auto Regressive Models
Learn about different types of AR models for time series analysis, including AR, MA, ARMA, ARIMA, SARIMA, and SARIMAX. Discover how to use ACF and PACF plots to diagnose and build accurate time series forecasting models. Enhance your understanding with examples and practical tips to help you build robust models for various applications. ... Read More

Part 1: Guide to build accurate Time Series Forecasting models
Time series forecasting is a statistical technique that predicts future values over time based on past observations. Unlike other forms of data analysis, time series forecasting involves analyzing data ordered in time. This means that each observation in the dataset is associated with a specific point in time, such as hourly, daily, weekly, monthly, or yearly. ... Read More

Everything you need to know about Ethereum blockchain network
Ethereum is a decentralized open source blockchain with smart contract functionality. The network works on POS consensus. To know more about ether, gas, and how the transaction happens on the network, refer to this valuable post. ... Read More

Decoding the Magic of Probabilistic Graphical Models: A Comprehensive Guide to Understanding and Applying PGMs in Data Science
Learn about the powerful framework of Probabilistic Graphical Models, their concepts, algorithms, and applications in data science. Explore how PGMs work and how they can be used to model complex dependencies between variables in a wide range of fields. Our comprehensive guide provides an in-depth understanding of PGMs, making it the perfect resource for beginners and experts alike. ... Read More