
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 10476 Articles for Python

381 Views
This tutorial will explain how to make Stripplot with Jitter in Altair Python. It is quick and easy to visualize a dataset containing a continuous and a categorical variable using a strip plot with jitter in Altair Python. In a strip plot, one of the variables is categorical, and the other is continuous. Strip plots are a sort of scatter plot. We can see the distribution of the continuous variable for each category by looking at the data points as individual points along the categorical axis. Spreading out the data points on the plot with jitter makes it simpler to ... Read More

256 Views
Pandas is an open-source Python library designed for data manipulation and analysis. It provides powerful data structures like Series (1-dimensional labeled array) and DataFrame (2-dimensional labeled array) that can handle different types of data and operations, such as reading and writing data from/to various file formats, merging, filtering, aggregating, and pivoting data, as well as handling missing or duplicate data. Pandas also supports time-series data and provides extensive data visualization capabilities. Its ease of use, versatility, and performance make it a popular choice among data scientists and analysts for exploratory data analysis, data cleaning, and feature engineering tasks. ... Read More

1K+ Views
A boxplot, also known as a box-and-whisker plot, is a graphical representation of a dataset that displays the median, quartiles, and outliers of the data. The box represents the interquartile range (IQR), which is the range between the 25th and 75th percentiles of the data. The median is shown as a line within the box. The whiskers extend from the box to show the range of the data, excluding outliers. Outliers, which are data points that fall outside of the whiskers, are typically shown as individual points or asterisks. Boxplots are useful for summarizing the distribution of a dataset and ... Read More

14K+ Views
Pandas is a powerful and popular data manipulation library in Python that provides a flexible and efficient way to handle and analyze data. One of the key features of Pandas is its DataFrame object, which is a two-dimensional tabular data structure similar to a spreadsheet or a SQL table. When printing a Pandas DataFrame directly in a Jupyter notebook or a Python console, it automatically truncates the display output when the DataFrame has many rows. By default, only a limited number of rows and columns are displayed to ensure that the output is concise and easier to read. This ... Read More

649 Views
Meteograms are graphical representations of weather data over a specific time period, typically displayed on a single plot. They provide a concise and visual way to represent multiple weather variables, such as temperature, humidity, wind speed, precipitation, etc., over time. Meteograms are widely used in meteorology and weather forecasting to analyze and visualize weather trends and changes. A typical Meteogram consists of a time axis along the x-axis, representing the time period of interest, and one or more vertical axes along the y-axis, representing the weather variables being plotted. Each weather variable is typically plotted as a line or a ... Read More

4K+ Views
Django is a Python web framework developer used to develop web applications faster and write down easy code syntax. Also, Django is a full feature rich application as it contains many features, including the Django signals. In Django, signals are used to trigger some function whenever any event occurs. For example, when users make some changes in the database, we can trigger a particular function, which can show the changes to users on the web page. The Django contains a total of 3 types of signals which we have explained below. Pre_save/post_save − It triggers the action whenever a ... Read More

6K+ Views
PyGame Pygame is a Python library used to develop games and multimedia applications. It provides functionality for handling user input, graphics, sound, and other multimedia-related tasks. Pygame is built on the SDL (Simple DirectMedia Layer) library, providing low-level access to audio, keyboard, mouse, joystick, and graphics hardware. Pygame provides a high-level interface to SDL, making it easier to use for Python developers. With Pygame, developers can create 2D games, arcade-style games, educational games, simulations, and other multimedia applications. Pygame provides a set of modules for handling graphics, audio, input, and other game-related tasks. It also includes tools for working with ... Read More

1K+ Views
An Area Chart is like a magician's hat of data visualization - it pulls out information about the cumulative magnitude of different variables over time or any other ordered dimension. You can see the magic happen as the chart unfolds, showing you the total magnitude of the variables in the form of stacked area plots. Each line represents a variable, and the area under it represents its magnitude at each point in time. With this chart, it's easy to compare the relative contributions of each variable to the total magnitude at any given time. If you want to dive into ... Read More

1K+ Views
Django is a Python web framework. Developers can use Django to develop web applications rapidly, and the Django framework contains multiple libraries and tools to improve the web development experience. The Django project contains various features, such as automatic admin interface integration, built-in form handling, URL and user request handling, etc., and one of them is Django App. In the Django project, the app is a module that contains templates, URLs, models, views, etc. So, the app is a module in large projects which we can resuse in other projects. Furthermore, the app makes it easy to manage the code ... Read More

668 Views
In KivyMD-Python, a banner is a graphical element that displays a short message or notification to the user. It can be used to inform the user about the status of the application, such as the successful completion of a task or an error that occurred. Banners can be customized in colour, text, and position on the screen. They are particularly useful for mobile applications where space is limited and quick feedback to the user is important. Banners can improve the overall user experience by providing timely and relevant information. Types of Banners In KivyMD-Python, there are two types of banners ... Read More