Giter Club home page Giter Club logo

northstar's Introduction

๐ŸŒŸ NorthStar: Blazingly Fast Data Processing ๐Ÿš€

NorthStar is a high-performance data processing library implemented in Rust with Python bindings. It's designed to make your data science workflows faster and cooler! ๐Ÿ˜Ž

๐ŸŒˆ Features

  • ๐Ÿฆ€ Rust-powered core for lightning-fast computations
  • ๐Ÿ Seamless Python integration
  • ๐Ÿ“Š Efficient DataFrame and Series operations
  • ๐Ÿš„ Optimized for speed and memory usage

๐Ÿ› ๏ธ Installation

Get started with NorthStar in seconds:

pip install northstar-data

Find the package here!!!

๐Ÿš€ Quick Start

Here's a taste of what NorthStar can do:

import northstar as ns

# Create a DataFrame
df = ns.PyDataFrame()
df.add_series(ns.PySeries("ages", [25, 30, 22, 28, 33]))
df.add_series(ns.PySeries("names", ["Alice", "Bob", "Charlie", "David", "Eve"]))
df.add_series(ns.PySeries("scores", [88.5, 92.0, 79.5, 95.5, 87.0]))

๐ŸŽ๏ธ Performance

NorthStar is designed for speed. Here's a quick comparison:

import northstar as ns
import time

data = list(range(1_000_000))

start_time = time.time()
ns_series = ns.PySeries("big_data", data)
ns_sum = ns_series.sum()
ns_time = time.time() - start_time

print(f"NorthStar time: {ns_time:.4f} seconds")

start_time = time.time()
py_sum = sum(data)
py_time = time.time() - start_time

print(f"Python time: {py_time:.4f} seconds")

speedup = py_time / ns_time
print(f"NorthStar is {speedup:.2f}x faster than pure Python!")

Demo Pic

๐Ÿ›ฃ๏ธ Roadmap

We're just getting started! Here's what's coming:

  • Trying to make it much faster ๐ŸŽ๏ธ
  • Advanced grouping and aggregation operations
  • More statistical functions (median, mode, standard deviation)
  • DataFrame join operations
  • Enhanced data visualization capabilities
  • Even more performance optimizations

๐Ÿค Contributing

We'd love your help to make NorthStar even more awesome! Check out our Contributing Guide to get started.

๐Ÿ“œ License

NorthStar is MIT licensed. See the LICENSE file for details.

๐ŸŒŸ Star Us!

If you find NorthStar helpful, give us a star on GitHub! It helps us know we're on the right track and encourages us to keep improving.

Happy data crunching! ๐Ÿš€๐Ÿ“Š๐Ÿฆ€

northstar's People

Contributors

marpit19 avatar

Stargazers

appyz avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.