Popularity
3.7
Growing
Activity
0.0
Stable
10
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.
-
ishi
Graph plotting package with a small API and sensible defaults powered by gnuplot. -
stats
An expressive crystal implementation of statistical distributions and usual math functions. :bar_chart: -
predict.cr
Satellite prediction library for crystal using the sgp4 model -
alea
Repeatable pseudo-random sampling, CDF over most known probability distributions.
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
* 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?
Popular Comparisons
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