Questions tagged [pagerank]

PageRank is a graph algorithm that assigns importance to nodes based on their links, and is named after its inventor - Larry Page. The algorithm is frequently applied to web graphs to calculate an importance of each node [url] in the graph.

PageRank is an algorithm to assign importance to nodes in linked data base, and is named after its inventor - Larry Page. The algorithm is frequently used on the web - to calculate an importance of each node [url] in the database.

The algorithm is simulating a random-surfer model. The random surfer starts from a random node in the graph, and can chose to use an out edge from this vertex at probability α, or to jump into a random node at probability 1-α. The score of each node is the probability of the random surfer to be at this node at some point in time.

The algorithm is patented, and IP rights belong to Stanford University.

350 questions
0
votes
1 answer

how can i re-use previous results of a pagerank calculation in python-igraph

I have an ever-changing graph. Over time, a few number of vertices are added and a few new edges appear (nodes are not deleted). If i have a previous pagerank calculation result, how can i re-use it in order to improve speed? The python igraph…
user37203
  • 676
  • 5
  • 21
0
votes
1 answer

What is the best to way to provide database content to crawlers

My site's content is defined by user-provided issues and comments and is dynamic and ever growing in nature. The database is expected to host millions of records.However, these contents are presented to visitors based on their selection of different…
user1928896
  • 514
  • 1
  • 4
  • 16
0
votes
2 answers

Computing a pagerank on a weighted graph with absolute weights

I am facing the same issue as expressed in this link (Networkx PageRank - Equal Ranks with Different Weights). Essentially, I am using networkx to compute the pagerank on a graph. Since, pagerank computation first converts the graph to a right…
Amit Gupta
  • 451
  • 5
  • 18
0
votes
1 answer

How to map multiple URLs references of same content to one SEO friendly URL?

In My Application We can access user profile screen by any of next URLs format http://example.com/users/123/ http://example.com/users/123/mike http://example.com/users/123/mike-pedro But the problem is that Now many URLs will show the same…
Ahmed Nabil
  • 17,392
  • 11
  • 61
  • 88
0
votes
2 answers

webpage in public_html don't show up in google search

Is there a way to get my webpage which is stored in my public_html folder on my server to show up in google? Right now I don't get any hit when searching the title.
user3741035
  • 2,455
  • 4
  • 15
  • 20
0
votes
1 answer

Google pagerank change after installing SSL certificate

I just installed a new SSL certificate on one of my sites, also I've redirected the entire traffic to use https instead of http. What will happen with my current Google page rank ? It will be transferred to the "new" https version or I will have a…
JeanC
  • 38
  • 3
0
votes
1 answer

PageRank Calculation in Simplist Form - From Adjancy Matrix

I was asked to create an adjancy matrix from a table of: A B C A 0 1 0 B 1 0 1 C 0 0 0 I got this: A B C A 1/6 2/3 1/6 B 5/12 1/6 5/12 C 1/6 1/6 1/6 I am now being asked if I can sketch out in…
0
votes
1 answer

Information Retrieval - Adjancey Matrix Graph Sketch, Teleportation Probability, Calculate PageRank

I am doing a few thing on Information Retrieval and have an exam coming up and I am absolutely clueless. First of, could anyone recommend me the shortest and best description possible for what PageRank actually is in Information Retrieval? Maybe…
0
votes
2 answers

OrientDB calculate PageRank

how can i calculate PageRank in OrientDB with Java API? I import my graph into OrientDB as follow OrientGraphFactory factory = new OrientGraphFactory("plocal:./db/somegraph"); OrientGraph graph = factory.getTx(); …
frankenstein
  • 161
  • 1
  • 13
0
votes
1 answer

Calculating pageRank in a searchEngine

Can someone explain why this function does not calculate the pagerank but assigns 0.15 to everyone? def calculatepagerank(self, iterations=20): # clear out the current PageRank tables self.con.execute('drop table if exists pagerank') …
0
votes
1 answer

Can't use ? when redirect 301 with .htaccess

I have a website which is being renewed. It has url's like site.com/page.php?p=company&l=nl The new URL is site.com/company I would like to use .htaccess to redirect 301. (I would like to keep the SEO pagerank for the old pages) Because of the ? it…
fourr
  • 59
  • 1
  • 9
0
votes
1 answer

Speeding up arithmetic with Python Decimal library

I am trying to run a function that is similar to Google's PageRank algorithm (for non-commercial purposes, of course). Here is the Python code; note that a[0] is the only thing that matters here, and a[0] contains an n x n matrix such as…
user520415
0
votes
1 answer

Is there a `typical' Pagerank convergence threshold

The pagerank algorithm computes probability iteratively until convergence, which is measured by checking if the difference between the values computed in the current iteration and those from the previous is below a threshold. I remember (could be…
Ziqi
  • 2,445
  • 5
  • 38
  • 65
0
votes
1 answer

PHP Pagerank Null Output

Why I get null output from this code? But when I change url become hxxp://football-replay.com I get output 0.
0
votes
3 answers

SEO - How to programmatically check if a website has been Banned by Google

if your website links to another site that has been blacklisted by Google this is bad for your ranking Sites like onlinealley helps you to know if there're problems with a website you are linking to. Does any Google API Exist .. or how are websites…
mickthompson
  • 5,442
  • 11
  • 47
  • 59