awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 repositorios

Awesome GitHub RepositoriesColumn Value Replacements

Operations to swap or update existing values within a specific column.

Distinct from Column Value Extraction: Closest candidates focus on extraction or sentinel replacement; this is general-purpose value swapping in tabular data.

Explore 6 awesome GitHub repositories matching data & databases · Column Value Replacements. Refine with filters or upvote what's useful.

Awesome Column Value Replacements GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • iamseancheney/python_for_data_analysis_2nd_chinese_versionAvatar de iamseancheney

    iamseancheney/python_for_data_analysis_2nd_chinese_version

    8,937Ver en GitHub↗

    This project is an educational resource and a collection of instructional materials for performing data manipulation and statistical analysis using Python. It provides a comprehensive set of guides and code examples for using the Pandas, NumPy, and Matplotlib libraries to analyze structured data. The resource includes a dedicated guide for reshaping, cleaning, and aggregating tabular data and time series via Pandas, alongside a reference for high-performance vectorized operations and linear algebra using NumPy. It also features tutorials for creating publication-quality charts, distribution p

    Swaps specified values across a dataset to standardize markers and labels.

    matplotlibnumpypandas
    Ver en GitHub↗8,937
  • jackzhenguo/python-small-examplesAvatar de jackzhenguo

    jackzhenguo/python-small-examples

    8,132Ver en GitHub↗

    This project is a comprehensive library of practical Python code examples and patterns. It provides a collection of scripts and snippets designed to demonstrate a wide range of programming tasks, from basic syntax to advanced implementation patterns. The repository focuses on several core domains, including the implementation of concurrency and multithreading examples, data analysis snippets for cleaning and manipulating tabular data, and various data visualization examples. It also covers automation scripts for file system management and a variety of general programming patterns. Additional

    Transforms categorical data into numerical values by applying a mapping dictionary to a column.

    Pythondata-sciencemachine-learningpython
    Ver en GitHub↗8,132
  • ibis-project/ibisAvatar de ibis-project

    ibis-project/ibis

    6,574Ver en GitHub↗

    Ibis is a portable Python dataframe library and multi-backend query engine that provides a unified interface for executing data transformations across diverse compute engines. It functions as a Python SQL expression compiler and dialect transpiler, allowing users to define data logic once and execute it across cloud warehouses, embedded databases, and distributed clusters without rewriting code. The project distinguishes itself through a database backend abstraction that decouples transformation logic from the underlying execution engine. It enables polyglot data workflows by mixing raw SQL s

    Creates new columns from existing data or constant literal values.

    Pythonbigqueryclickhousedatabase
    Ver en GitHub↗6,574
  • apache/pinotAvatar de apache

    apache/pinot

    6,098Ver en GitHub↗

    Pinot is a distributed, columnar analytical database designed for high-concurrency, low-latency query processing. It functions as a real-time OLAP datastore, enabling interactive, user-facing analytics by ingesting and querying massive datasets from both streaming and batch sources. The system architecture relies on a centralized controller for cluster coordination and a distributed segment-based storage model to ensure horizontal scalability. The platform distinguishes itself through a hybrid ingestion pipeline that unifies real-time event streams and historical batch data into a single quer

    Enables the definition of virtual fields using expressions to transform or calculate data values dynamically during query execution.

    Java
    Ver en GitHub↗6,098
  • rdatatable/data.tableAvatar de Rdatatable

    Rdatatable/data.table

    3,894Ver en GitHub↗

    This project is a high-performance tabular data processing framework for R, designed to handle massive datasets with memory efficiency and speed. It provides an enhanced data structure that utilizes reference semantics and in-place modification to perform complex transformations without the overhead of unnecessary object copying. The library distinguishes itself through its low-level architectural optimizations, including multi-threaded parallel processing, radix-based sorting, and memory-mapped file parsing. By offloading critical data manipulation and aggregation routines to compiled C code

    Evaluates logical conditions to replace values within columns based on specified criteria.

    R
    Ver en GitHub↗3,894
  • hosseinmoein/dataframeAvatar de hosseinmoein

    hosseinmoein/DataFrame

    2,917Ver en GitHub↗

    DataFrame is a C++ tabular data library and manipulation engine designed for managing heterogeneous data in contiguous memory. It functions as a statistical analysis framework and time series analysis toolkit, providing the means to store, index, and transform multidimensional datasets. The project distinguishes itself through a high-performance execution model that utilizes column-major storage, SIMD-aligned memory allocation, and a thread-pool for parallel computations. It employs a visitor-based algorithm dispatch system and policy-driven transformations to decouple data processing logic f

    Allows swapping existing values in a column or the index with new values.

    C++aicppdata-analysis
    Ver en GitHub↗2,917
  1. Home
  2. Data & Databases
  3. Column Value Replacements

Explorar subetiquetas

  • Conditional Value ReplacementsUpdating tabular data values based on the result of a logical test. **Distinct from Column Value Replacements:** Distinct from Column Value Replacements by focusing specifically on the conditional logic used to decide which value to apply.
  • Derived Column GenerationCreation of new columns based on expressions of existing data or constant values. **Distinct from Column Value Replacements:** Focuses on generating new columns rather than replacing values in existing columns.