TypedTables.jl VS DataFramesMeta.jl

Compare TypedTables.jl vs DataFramesMeta.jl and see what are their differences.

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.com
featured
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.
www.influxdata.com
featured
TypedTables.jl DataFramesMeta.jl
2 4
143 472
2.1% 3.2%
5.2 6.7
3 months ago 13 days ago
Julia Julia
GNU General Public License v3.0 or later GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

TypedTables.jl

Posts with mentions or reviews of TypedTables.jl. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-17.
  • Pandas vs. Julia – cheat sheet and comparison
    7 projects | news.ycombinator.com | 17 May 2023
    Indeed DataFrames.jl isn't and won't be the fastest way to do many things. It makes a lot of trade offs in performance for flexibility. The columns of the dataframe can be any indexable array, so while most examples use 64-bit floating point numbers, strings, and categorical arrays, the nice thing about DataFrames.jl is that using arbitrary precision floats, pointers to binaries, etc. are all fine inside of a DataFrame without any modification. This is compared to things like the Pandas allowed datatypes (https://pbpython.com/pandas_dtypes.html). I'm quite impressed by the DataFrames.jl developers given how they've kept it dynamic yet seem to have achieved pretty good performance. Most of it is smart use of function barriers to avoid the dynamism in the core algorithms. But from that knowledge it's very clear that systems should be able to exist that outperform it even with the same algorithms, in some cases just by tens of nanoseconds but in theory that bump is always there.

    In the Julia world the one which optimizes to be fully non-dynamic is TypedTables (https://github.com/JuliaData/TypedTables.jl) where all column types are known at compile time, removing the dynamic dispatch overhead. But in Julia the minor performance gain of using TypedTables vs the major flexibility loss is the reason why you pretty much never hear about it. Probably not even worth mentioning but it's a fun tidbit.

    > For what it's worth, data.table is my favourite to use and I believe it has the nicest ergonomics of the three I spoke about.

    I would be interested to hear what about the ergonomics of data.table you find useful. if there are some ideas that would be helpful for DataFrames.jl to learn from data.table directly I'd be happy to share it with the devs. Generally when I hear about R people talk about tidyverse. Tidier (https://github.com/TidierOrg/Tidier.jl) is making some big strides in bringing a tidy syntax to Julia and I hear that it has had some rapid adoption and happy users, so there are some ongoing efforts to use the learnings of R API's but I'm not sure if someone is looking directly at the data.table parts.

  • I wrote one of the fastest DataFrame libraries
    6 projects | news.ycombinator.com | 13 Mar 2021
    Not that I am a heavy DataFrame user, but I have felt more at home with the comparatively light-weight TypeTables [1]. My understanding is that the rather complicated DataFrame ecosystem in Julia [2] mostly stems from whether tables should be immutable and/or typed. As far as I am aware there has not been any major push at the compiler level to speed up untyped code yet – although there should be plenty of room for improvements – which I suspect would benefit DataFrames greatly.

    [1]: https://github.com/JuliaData/TypedTables.jl

    [2]: https://typedtables.juliadata.org/stable/man/table/#datafram...

DataFramesMeta.jl

Posts with mentions or reviews of DataFramesMeta.jl. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-17.

What are some alternatives?

When comparing TypedTables.jl and DataFramesMeta.jl you can also consider the following projects:

vaex - Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second 🚀

db-benchmark - reproducible benchmark of database-like ops

data.table - R's data.table package extends data.frame:

DataFrames.jl - In-memory tabular data in Julia

rust-dataframe - A Rust DataFrame implementation, built on Apache Arrow

siuba - Python library for using dplyr like syntax with pandas and SQL

Tidier.jl - Meta-package for data analysis in Julia, modeled after the R tidyverse.

DaemonMode.jl - Client-Daemon workflow to run faster scripts in Julia

ballista - Distributed compute platform implemented in Rust, and powered by Apache Arrow.

TwoBasedIndexing.jl - Two-based indexing

FromFile.jl - Julia enhancement proposal (Julep) for implicit per file module in Julia

HTTP.jl - HTTP for Julia