Python

How To Deploy a Django App on App Platform — step-by-step Python tutorial on Progressive Robot

How To Deploy a Django App on App Platform

Django is a powerful web framework that allows you to deploy your Python applications or websites. Django includes many features such as authentication, a custom database ORM, and an extensible plugin architecture. Django simplifies the complexities of web development, allowing you to focus on writing code.

Read more
A Guide to Time Series Forecasting with ARIMA in Python 3 — step-by-step Python tutorial on Progressive Robot

A Guide to Time Series Forecasting with ARIMA in Python 3

In this tutorial, we will produce reliable forecasts of time series. We will begin by introducing and discussing the concepts of autocorrelation, stationarity, and seasonality, and proceed to apply one of the most commonly used method for time-series forecasting, known as ARIMA.

Read more
3 Easy Ways to Create a Subset of Python Dataframe — step-by-step Python tutorial on Progressive Robot

3 Easy Ways to Create a Subset of Python Dataframe

Hello, readers! In this article, we will be focusing on Different Ways to Create a Subset of a Python Dataframe in detail. So, let us get started! First, what is a Python Dataframe? [Python Pandas module](/community/tutorials/python-pandas-module-tutorial) provides us with two data structures, namely, Series and Dataframe to store the values. A [Dataframe](/community/tutorials/python-pandas-dataframe-operations) is a data […]

Read more
5 Ways to Find The Average of a List in Python — step-by-step Python tutorial on Progressive Robot

5 Ways to Find The Average of a List in Python

Hi Folks! In this article, we will have a look at the various ways to find the average of a list in a [Python List](/community/tutorials/python-list). In general, an average is a value that represents a whole set of data items or elements. Formula: Average = summation of numbers/total count. Techniques to find the average of […]

Read more
Bootstrap Sampling in Python — step-by-step Python tutorial on Progressive Robot

Bootstrap Sampling in Python

This is a tutorial on Bootstrap Sampling in Python. In this tutorial, we will learn what is bootstrapping and then see how to implement it. Let's get started. What is Bootstrap Sampling? The definition for bootstrap sampling is as follows : > _In statistics, Bootstrap Sampling is a method that involves drawing of sample data […]

Read more
Get Unique Values From a List in Python — step-by-step Python tutorial on Progressive Robot

Get Unique Values From a List in Python

In this article, we will be understanding 3 ways to get unique values from a Python list. While dealing with a huge amount of raw data, we often come across situations wherein we need to fetch out the unique and non-repeated set of data from the raw input data-set. The methods listed below will help […]

Read more
How to calculate BLEU Score in Python? — step-by-step Python tutorial on Progressive Robot

How to calculate BLEU Score in Python?

Bleu score in Python is a metric that measures the goodness of Machine Translation models. Though originally it was designed for only translation models, now it is used for other [natural language processing applications](/community/tutorials/natural-language-processing-tasks) as well. The BLEU score compares a sentence against one or more reference sentences and tells how well does the candidate […]

Read more
CHAT