oorb VS Tidier.jl

Compare oorb vs Tidier.jl and see what are their differences.

oorb

An open-source orbit-computation package for Solar System objects. (by oorb)

Tidier.jl

Meta-package for data analysis in Julia, modeled after the R tidyverse. (by TidierOrg)
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
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
oorb Tidier.jl
3 5
54 492
- 4.7%
5.3 8.5
about 2 months ago 7 days ago
Fortran Julia
GNU General Public License v3.0 only MIT License
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.

oorb

Posts with mentions or reviews of oorb. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-22.
  • Show HN: OpenOrb, a curated search engine for Atom and RSS feeds
    7 projects | news.ycombinator.com | 22 Apr 2024
    Imagine my surprise to see OpenOrb, the standard open source software package for orbit determination and minor planet propagation, on the front page of HackerNews. Its interesting software with a beautiful theoretical basis in Bayesian statistics, and a gnarly Fortran codebase - I can’t wait to see the discussion!

    Oh.

    It’s one thing to land near a name in use. It is quite another to take it directly!

    https://github.com/oorb/oorb

  • Julia 1.10 Released
    15 projects | news.ycombinator.com | 27 Dec 2023
  • NASA’s Double Asteroid Redirection Test Is a Smashing Success
    2 projects | news.ycombinator.com | 14 Jan 2023
    Mostly Python and Fortran. See for example https://github.com/oorb/oorb.

    The hardest problems are always the social ones. How do you get uptake of a new method, how do you get funding, how do you politely tell a collaboration they are doing the wrong thing, etc.

    But if you mean pure technical stuff - the hardest problem I had to solve was rethinking some of the inner loops of the THOR algorithm. The problem was essentially to speed up a Hough transform in 6D space. Lots of time spent profiling CPU cache timings to get that fast.

Tidier.jl

Posts with mentions or reviews of Tidier.jl. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-27.
  • Tidier.jl: Meta-package for data analysis in Julia, modeled after R tidyverse
    1 project | news.ycombinator.com | 15 Feb 2024
  • Julia 1.10 Released
    15 projects | news.ycombinator.com | 27 Dec 2023
    btw, there has been a pretty nice effort of reimplementing the tidyverse in julia with https://github.com/TidierOrg/Tidier.jl and it seems to be quite nice to work with, if you were missing that from R at least
  • 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.

  • Tidyverse 2.0.0
    9 projects | news.ycombinator.com | 9 Apr 2023
    “Tidier.jl is a 100% Julia implementation of the R tidyverse mini-language in Julia.”

    https://github.com/TidierOrg/Tidier.jl

  • What's Julia's biggest weakness?
    7 projects | /r/Julia | 18 Mar 2023
    A recent package, Tidier.jl, is coming from a R package developer: https://github.com/kdpsingh/Tidier.jl

What are some alternatives?

When comparing oorb and Tidier.jl you can also consider the following projects:

thor - Tracklet-less Heliocentric Orbit Recovery

Julia-DataFrames-Tutorial - A tutorial on Julia DataFrames package