Popularity
3.6
Declining
Activity
0.0
Stable
11
2
3
Programming language: Crystal
License: MIT License
Tags:
Science And Data Analysis
chizge alternatives and similar shards
Based on the "Science and Data analysis" category.
Alternatively, view chizge alternatives based on common mentions on social networks and blogs.
-
stats
An expressive crystal implementation of statistical distributions and usual math functions. :bar_chart:
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of chizge or a related project?
README
Chizge (Çizge) 
A Network (Graph) Analysis library for Crystal Language, inspired by NetworkX.
Installation
Add this to your application's shard.yml
:
dependencies:
chizge:
github: aladagemre/chizge
Usage
require "chizge"
g = Chizge::Graph.new
g.add_path([1,2,3,4,5])
g.add_node(6)
g.add_edge(4, 6)
g.add_edge(4, 5, {"weight" => 10.0 as Chizge::Attr})
puts g.number_of_nodes
puts g.size
puts g.size(weight="weight")
g.degree([] of Chizge::Node, "weight") do |x|
puts x
end
i = g.each
puts i.next
puts g.to_s
puts g.contains(1)
puts g.contains(1, 2)
puts g[1]
Status
This project is on pre-alpha stage and there may be lots of pieces missing yet.
Development
TODO: Write development instructions here
Contributing
- Fork it ( https://github.com/aladagemre/chizge/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- aladagemre Ahmet Emre Aladağ - creator, maintainer