Build Website with Flask – Part 8

This is part of our Flask series: Build Website with Flask – Part 1 Build Website with Flask – Part 2 Build Website with Flask – Part 3 Build Website with Flask – Part 4 Build Website with Flask – Part 5 Build Website with Flask – Part 6 Build Website with Flask – Part … Read more

React Native Developer – Income and Opportunity

Before we learn about the money, let’s get this question out of the way: What Is React Native? Let’s have a look at the definition from the official React Native website: “React Native combines the best parts of native development with React, a best-in-class JavaScript library for building user interfaces. You can use React Native … Read more

TensorFlow Developer – Income and Opportunity

Related Article: Keras Developer — Income and Opportunity PyTorch Developer — Income and Opportunity Before we learn about the money, let’s get this question out of the way: What Is TensorFlow? Let’s have a look at the definition from the official TensorFlow website: “An end-to-end open source machine learning platform. The core open source library … Read more

Apache Spark Developer – Income and Opportunity

Before we learn about the money, let’s get this question out of the way: What Is Apache Spark? Let’s have a look at the definition from the official Apache Spark website: “Apache Sparkβ„’ is a multi-language engine for executing data engineering, data science, and machine learning on single-node machines or clusters. Apache Sparkβ„’ is built … Read more

Convert Bytes To Floating Point Numbers

Summary: The struct module in Python, taken from the C programming language, lets you convert bytes to and from floating point numbers. [toc] Problem: How to convert bytes to floating point numbers? A quick look at the solution: A Brief Introduction to Struct The struct module has three main methods for data conversion: unpack(), pack() … Read more

How Do I Fill Column With One Value In Pandas?

Summary: The following approaches will help you to fill a column with one value in Pandas: df[‘col_name’] = “value” df.insert(index, ‘col_name’, ‘value’) df.loc[:, ‘col_name’] = ‘value’ df = df.assign(‘col_name’=’value’) Introduction Problem Formulation: How do I fill a column with one value in Pandas? Example: Let’s consider that we have a DataFrame as shown below: Output: … Read more

Build Website with Flask – Part 6

This is part of our Flask series: Build Website with Flask – Part 1 Build Website with Flask – Part 2 Build Website with Flask – Part 3 Build Website with Flask – Part 4 Build Website with Flask – Part 5 Build Website with Flask – Part 6 Build Website with Flask – Part … Read more

Storing Scraped Data

[toc] Introduction After scraping huge chunks of data, you need to store them in a proper format. You may want to store the data directly into a text file, or you may opt to store it in a more structured way in a csv file or an excel sheet. You may otherwise want to store … Read more

Pandas Developer – Income and Opportunity

Before we learn about the money, let’s get this question out of the way: What Is Pandas? Let’s have a look at the definition from the official Pandas website: “pandas is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of the Python programming language.” πŸ’‘ … Read more

NumPy Developer – Income and Opportunity

Before we learn about the money, let’s get this question out of the way: What Is NumPy? Let’s have a look at the definition from the official NumPy website: “Nearly every scientist working in Python draws on the power of NumPy. NumPy brings the computational power of languages like C and Fortran to Python, a … Read more

Keras Developer – Income and Opportunity

Before we learn about the money, let’s get this question out of the way: What Is Keras? Let’s have a look at the definition from the official Keras website: “Keras is an API designed for human beings, not machines. Keras follows best practices for reducing cognitive load: it offers consistent & simple APIs, it minimizes … Read more