Awesome Go

pagerank

CategoryScience and Data Analysis
SubcategoryScience and Data Analysis
Stars0

Weighted PageRank algorithm implemented in Go

About pagerank

pagerank GoDoc GoCover Go Report Card

Weighted PageRank implementation in Go

Usage

package main

import (
	"fmt"

	"github.com/alixaxel/pagerank"
)

func main() {
	graph := pagerank.NewGraph()

	graph.Link(1, 2, 1.0)
	graph.Link(1, 3, 2.0)
	graph.Link(2, 3, 3.0)
	graph.Link(2, 4, 4.0)
	graph.Link(3, 1, 5.0)

	graph.Rank(0.85, 0.000001, func(node uint32, rank float64) {
		fmt.Println("Node", node, "has a rank of", rank)
	})
}

Output

Node 1 has a rank of 0.34983779905464363
Node 2 has a rank of 0.1688733284604475
Node 3 has a rank of 0.3295121849483849
Node 4 has a rank of 0.15177668753652385

Install

go get github.com/alixaxel/pagerank

License

MIT

Frequently Asked Questions

What is pagerank?

pagerank is a Science and Data Analysis library for the Go programming language. Weighted PageRank algorithm implemented in Go

How do I install pagerank?

Install pagerank with the Go module system using `go get alixaxel/pagerank`. Check the repository for the current installation instructions.

What category does pagerank belong to?

pagerank is listed under Science and Data Analysis, specifically Science and Data Analysis.

← Back to Science and Data Analysis