Tags: pandas* + python*

0 bookmark(s) - Sort by: Date ↓ / Title /

  1. This course takes you from Python fundamentals to AI Agent development, covering core Python, NumPy, Pandas, SQL, Flask, FastAPI, LLMs, and open-source models via HuggingFace.
  2. Lux is a Python library designed to automate data visualization within Pandas DataFrames, streamlining the exploratory data analysis (EDA) process. It automatically generates insightful charts like distributions, correlations, and temporal trends upon displaying a DataFrame, reducing the need for manual plotting code. Users can also save visualizations as interactive HTML reports or export individual charts for further customization using tools like Matplotlib, Seaborn, or Altair. While best suited for Jupyter Notebook environments and smaller datasets, Lux aims to accelerate data understanding and hypothesis building, particularly for learners and researchers.
  3. The author describes building a personal, open-source computational engine using Python libraries SymPy, NumPy, pandas, SciPy, statsmodels, Pingouin, Matplotlib, and Seaborn, effectively replicating the functionality of Wolfram Mathematica at no cost.
  4. This tutorial compares Polars and pandas, covering syntax, performance, LazyFrames, conversions, and plotting to help you choose the right library for your data analysis needs.
  5. Learn how to connect several essential tools to develop a simple yet intuitive dashboard using Streamlit, Plotly, DuckDB, and Pandas to visualize data from a JSON file.
  6. This video course introduces DuckDB, an open-source database for data analytics in Python. It covers creating databases from files (Parquet, CSV, JSON), querying with SQL and the Python API, concurrent access, and integration with pandas and Polars.
  7. Local Large Language Models can convert massive DataFrames to presentable Markdown reports — here's how.
    2025-06-03 Tags: , , , , by klotz
  8. Pandas 3.0 will significantly boost performance by replacing NumPy with PyArrow as its default engine, enabling faster loading and reading of columnar data.
  9. These one-liners provide quick and effective ways to assess the quality and consistency of the data within a Pandas DataFrame.

    | Code Snippet | Explanation |
    | --- | --- |
    | `df.isnull().sum()` | Counts the number of missing values per column. |
    | `df.duplicated().sum()` | Counts the number of duplicate rows in the DataFrame. |
    | `df.describe()` | Provides basic descriptive statistics of numerical columns. |
    | `df.info()` | Displays a concise summary of the DataFrame including data types and presence of null values. |
    | `df.nunique()` | Counts the number of unique values per column. |
    | `df.apply(lambda x: x.nunique() / x.count() * 100)` | Computes the percentage of unique values for each column. |
    | `df.isin( value » ).sum()` | Counts the number of occurrences of a specific value across all columns. |
    | `df.applymap(lambda x: isinstance(x, type_to_check)).sum()` | Counts the number of values of a specific type (e.g., int, str) per column. |
    | `df.dtypes` | Lists the data type for each column in the DataFrame. |
    | `df.sample(n)` | Returns a random sample of n rows from the DataFrame. |
  10. Mastering specific Pandas functions can enhance data manipulation skills for data scientists using Python, focusing on less explored methods for data transformation and analysis.

Top of the page

First / Previous / Next / Last / Page 1 of 0 SemanticScuttle - klotz.me: tagged with "pandas+python"

About - Propulsed by SemanticScuttle