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
-1
votes
1 answer

PageRank for recommendation system (weighted bipartite graph)

I have users and they have associated skills that are ranked from 0 to 10 (0 being awful, 10 being awesome), for example: There's a user UA (top left) and they have two corresponding skills SA (top right) and SC (bottom right). Similarly, UB has SB…
karolyzz
  • 480
  • 4
  • 28
-1
votes
1 answer

Dict has no attribute 'directed'

While applying the Pagerank algorithm Library in Python to a graph (JSON) in the following format: matrix={'1':{'2':23,'4':56},'4':{'2':22,'7':5}} pr=nx.pagerank(matrix,alpha=0.85) # -->{from_node:{to_node:edge weight)} I am receiving the…
Drool
  • 119
  • 1
  • 7
-1
votes
1 answer

sphinx - set weight to a doc in a query

In sphinx search, is that possible set weight or pr somelike to specified record(@id) for corresponding query keyword? What i expect to do is raise/decrease some specified rank of records for specified queries. eg:doc A has 2 weights for 2 different…
luxury
  • 3
  • 2
-1
votes
1 answer

Should I use css for _escaped_fragment_ pages?

I'm in the process of making an ajax site crawlable. Most of the style is generated with javascript. Do I need to even include static css in the _escaped_fragment_ pages, which should never be reached by actual visitors? Would it have any effect on…
awalmartbag
  • 103
  • 7
-1
votes
1 answer

How can I get better google indexing results?

I have just launched a new domain, www.nextlevelsmf.com and it's not showing for some keywords I would like it to. Can anyone give me some advice to help it rank better please? I'd like it to show on the first 2 pages for: Managed SMF hosting SMF…
-1
votes
2 answers

Algorithm of crawling Top10 PR/Alexa sites

I'm trying to write a script which will crawl current top 10 PR/Alexa sites. since PR/Alexa frequently changes. so my script should take care of this I mean if today there is not a site in top 10 but could be tomorrow. I dont know how to start with.…
user3745956
  • 33
  • 2
  • 6
-1
votes
2 answers

PR of zero with lots of inbound links

I run http://Fanfootage.com which has a PageRank of 0 and has been online for over 1 year. A few months ago, we moved from another domain name to this, and also switched to using all https. We do not do any magic/shady tricks. I got nofollows set…
Vinny Glennon
  • 149
  • 1
  • 13
-1
votes
1 answer

How to set PageRank and Hits parameters by using JUNG?

I'm trying to use PageRank and Hits algorithm on a DirectedSparseGraph I have build from a Wikipedia Dump. The graph is huge obviously and its nodes are String, while its Edge are Integer. The problem is that when I run this…
CodePi
  • 13
  • 4
-1
votes
2 answers

Google doesn't list the links to my website

It is more than a month that there are 24+ links listed on my Google Webmasters account. However, when google link:m.a.sharpasand.com none of them appears. Also, my page rank is zero. I have tried different variations of www. and with out using…
Sheric
  • 416
  • 2
  • 16
-1
votes
1 answer

How can my website appear in search engines

I have developed a website for a firm that deals in pumps, valves and diesel engines. They require that when an interested user searches with some keywords like "Pump Dealers" or "Valve Dealers", their site should appear in the results. Currently I…
Priyank Patel
  • 6,898
  • 11
  • 58
  • 88
-2
votes
2 answers

Any working C# code to get Google Page Rank for url containing '&' character?

Any C# solutions i tried failed on this url - http://www.streetmap.co.uk/newmap.srf?x=529725&y=182411&z=0&sv=WC1H%2B0BX&st=2&pc=WC1H%2B0BX&mapp=newmap.srf&searchp=newsearch.srf. Because of '&' character. Is there any C# code that handles such urls…
clumpter
  • 1,898
  • 6
  • 27
  • 38
-2
votes
1 answer

Calculating Percentages for Pagerank

I have to conduct a project on Pagerank and need to calculate the probability that it lands on each page. The text file is also too large to fit in an Excel file and I am having issues coming up with ways to calculate the probability. What is the…
-2
votes
1 answer

PageRank - How is a link defined?

I am trying to learn more about the PageRank algorithm. I have a task to implement a wikipedia search engine implementation using PageRank. I wanted to know how a links are defined. So if Page A has a hyperlink in the wiki article to Page B, is that…
-2
votes
1 answer

Will embedded Google custom search have any impacts on page ranking?

I would like to embed the Google custom search box into my website as most websites do, since it could provide full text search. Just wondering if this in use or not could have any impacts on page ranking?
Tian Chen
  • 493
  • 4
  • 15
-2
votes
1 answer

PHP pagerank API not working in sept. 2012

None of the Google Pageranks APIs are working anymore, pagerank -1. How do I fix it, are there any working pagerank apis?
user131008
  • 77
  • 1
  • 3
  • 7
1 2 3
23
24