Popularity
4.2
Declining
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.
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
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