datar

A Grammar of Data Manipulation in python (by pwwang)

Datar Alternatives

Similar projects and alternatives to datar based on common topics and language

  • polars

    144 datar VS polars

    Dataframes powered by a multithreaded, vectorized query engine, written in Rust

  • DataFrames.jl

    In-memory tabular data in Julia

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • dfply

    5 datar VS dfply

    dplyr-style piping operations for pandas dataframes

  • plydata

    2 datar VS plydata

    A grammar for data manipulation in Python

  • pipda

    1 datar VS pipda

    A framework for data piping in python

  • siuba

    25 datar VS siuba

    Python library for using dplyr like syntax with pandas and SQL

  • sspipe

    1 datar VS sspipe

    Simple Smart Pipe: python productivity-tool for rapid data manipulation

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better datar alternative or higher similarity.

datar reviews and mentions

Posts with mentions or reviews of datar. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-28.
  • Difficulty transitioning between R and Python?
    2 projects | /r/datascience | 28 Oct 2022
  • What would it take to recreate dplyr in Python?
    3 projects | news.ycombinator.com | 17 Jan 2022
  • datar: the dplyr in python
    3 projects | /r/Rlanguage | 25 Jun 2021
    datar does not only mimic the piping syntax, but follows the API design from dplyr as much as possible, and is tested with its test cases.
    2 projects | /r/Python | 25 Jun 2021
    df = tibble( x=range(4), y=['zero', 'one', 'two', 'three'] ) df >> mutate(z=f.x) """# output x y z 0 0 zero 0 1 1 one 1 2 2 two 2 3 3 three 3 """ df >> mutate(z=if_else(f.x>1, 1, 0)) """# output: x y z 0 0 zero 0 1 1 one 0 2 2 two 1 3 3 three 1 """ df >> filter(f.x>1) """# output: x y 0 2 two 1 3 three """ df >> mutate(z=if_else(f.x>1, 1, 0)) >> filter(f.z==1) """# output: x y z 0 2 two 1 1 3 three 1 """ ``` Works with plotnine ```python example grabbed from https://github.com/has2k1/plydata import numpy from datar.base import sin, pi from plotnine import ggplot, aes, geom_line, theme_classic df = tibble(x=numpy.linspace(0, 2*pi, 500)) (df >> mutate(y=sin(f.x), sign=if_else(f.y>=0, "positive", "negative")) >> ggplot(aes(x='x', y='y')) + theme_classic() + geom_line(aes(color='sign'), size=1.2)) ``` ![plotnine](https://github.com/pwwang/datar/raw/master/example.png) Easy to integrate with other libraries ```python import klib from pipda import register_verb from datar.datasets import iris from datar.dplyr import pull dist_plot = register_verb(func=klib.dist_plot) iris >> pull(f.Sepal_Length) >> dist_plot() ``` ![klib](https://github.com/pwwang/datar/raw/master/example2.png) For more detailed and advanced usage, see https://pwwang.github.io/datar/
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 19 Apr 2024
    Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality. Learn more →

Stats

Basic datar repo stats
4
255
7.4
about 1 month ago

pwwang/datar is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of datar is Python.

SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com