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 to get google pagerank from delphi

Anyone can show example code, how to get google pagerank from delphi ? e.g. with usage of INDY. I mean without usage of outer PHP script. So I mean direct call to google server from delphi ,decode data and show site(page) pagerank.
chubbyk
  • 6,212
  • 13
  • 53
  • 67
0
votes
1 answer

Having domain.com/keyword as home URL

I have just been asked whether or not having a domain such as exampledomain.com/keyword as the home URL to a WordPress site is a good idea or not. We are a digital agency so we would be going for exampledomain.com/digital-agency as the root URL. I…
Sam Kelham
  • 1,357
  • 4
  • 15
  • 28
0
votes
1 answer

Use PageRank to my Dbpedia query

I have a dbpedia query and i want to rank my results by using the pageRank algorithm. there is some classes developed in dbpedia dataset specifique to this problem in http://vocab.sti2.at/vrank#paramValue. Now, i want to compute the pageRank of each…
Adem
  • 113
  • 1
  • 10
0
votes
0 answers

Get Bing's PageRank and Yahoo's PageRank of a website using C# or VB.Net

Based on this question and this link, I have been able to get the Google PageRank of a website using C#. I would also like to get the PageRank for Bing and Yahoo. For Bing, the only link that I could find is this. Not sure, if there are any other…
Nitesh
  • 2,286
  • 2
  • 43
  • 65
0
votes
0 answers

Finding the PageRank of a website using python

So I'm writing an undergraduate paper using numerical linear algebra and applying it to a problem of my choice, and I chose the PageRank algorithm, via the Power Method. I've wrote a python code that implements the Power Method to compute the page…
Rooney
  • 3
  • 3
0
votes
5 answers

Scanning text file to ArrayList>

I am trying to read a text file into an ArrayList> The File Looks like: A D E F B A F C A B D D B C E B C D F F A B D G H A D F Following is my piece of code: private static void registerPages() throws IOException { …
Abdul Wasae
  • 3,614
  • 4
  • 34
  • 56
0
votes
1 answer

PageRank tool for large graphs

I need to compute the PageRank scores for a large graph which cannot be loaded into memory. I need a simple toolkit that can be easily modified, since I need to change its code in my research. Are you aware of any useful and simple toolkit that…
boomz
  • 657
  • 5
  • 21
0
votes
4 answers

Google Page Rank Calculation

I had developed a site. While I Google search it, it comes up in 1st for 3 different search terms but it still hasn't got a page rank. Whats the meaning of this?
Hacker
  • 7,798
  • 19
  • 84
  • 154
0
votes
1 answer

URL rank checker API for google popularity

I am trying to find the rank of a given url/domain for google search popularity from an API.I have found one such project in GitHub that gives the same but i am not sure about the reliability and accuracy of the results it is returning…
user3775217
  • 4,675
  • 1
  • 22
  • 33
0
votes
1 answer

Notifying Google about domain redirection

I have some domains to catch spelling mistakes, for example http://www.mysupredomain.com http://www.mysuperrdomain.com http://www.msuperdomain.com They all redirect to http://www.mysuperdomain.com (This is just an example) I have noticed that…
tmighty
  • 10,734
  • 21
  • 104
  • 218
0
votes
1 answer

PageRank toy example fails to converge

I'm coding a toy PageRank, including a crawler as well. It looks a bit odd, as my code fails to converge the PR values. I can also note that the delta between each iteration is 0, part of the output would be: url:…
GalB1t
  • 265
  • 1
  • 3
  • 13
0
votes
2 answers

jQuery AJAX (google PageRank)

I need a little help.. iv'e been developing a Jqery plug-in to get the page ranks of urls on a website using XHR, The problem is when requesting the rank from google servers the page is returned no content, but if i use an inspector and get the url…
RobertPitt
  • 56,863
  • 21
  • 114
  • 161
0
votes
1 answer

Inline SVG versus page rank

I have concerns about placing big inline SVG vectors into html. Does this affect search engines and page rank? Corresponding to what you can lastly hear about Code to Text ratio. I believe inline SVG files should be treated like single line
karolkochan
  • 140
  • 6
0
votes
1 answer

SEO - List of links - Farmlinking?

I'd like to know if listing a set of partner sites/blogs is useful for the pagerank growth. Does Google see it as an incorrect act? I read somewhere that if people exchange links, google seeks it and marks as a bad technique. If it doesn't matter,…
rlc
  • 5,809
  • 5
  • 38
  • 46
0
votes
0 answers

Understanding the resulting PageRank scores

I ran pagerank on a multi-directed graph. Each node in my graph has an integer value indicating my prior knowledge regarding its importance. I use this value as personalization value and run nx.pagerank_numpy. However, I have problem understanding…
Nima
  • 71
  • 1
  • 4