<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Just learning and thinking &#187; 超链接分析</title>
	<atom:link href="http://www.rushcj.com/laomi/archives/tag/%e8%b6%85%e9%93%be%e6%8e%a5%e5%88%86%e6%9e%90/feed" rel="self" type="application/rss+xml" />
	<link>http://www.rushcj.com/laomi</link>
	<description></description>
	<lastBuildDate>Tue, 01 Nov 2011 15:57:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.4" -->
		<copyright>2006-2007 </copyright>
		<managingEditor>laomi4569@gmail.com (Just learning and thinking)</managingEditor>
		<webMaster>laomi4569@gmail.com (Just learning and thinking)</webMaster>
		<category>posts</category>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>Just learning and thinking</itunes:summary>
		<itunes:author>Just learning and thinking</itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name>Just learning and thinking</itunes:name>
			<itunes:email>laomi4569@gmail.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://www.rushcj.com/laomi/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://www.rushcj.com/laomi/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>Just learning and thinking</title>
			<link>http://www.rushcj.com/laomi</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>超链接分析&#8211;PageRank</title>
		<link>http://www.rushcj.com/laomi/archives/9</link>
		<comments>http://www.rushcj.com/laomi/archives/9#comments</comments>
		<pubDate>Tue, 30 Jun 2009 02:41:59 +0000</pubDate>
		<dc:creator>laomi</dc:creator>
				<category><![CDATA[信息检索]]></category>
		<category><![CDATA[超链接分析]]></category>
		<category><![CDATA[pagerank]]></category>

		<guid isPermaLink="false">http://www.rushcj.com/laomi/?p=9</guid>
		<description><![CDATA[我们知道，在评价一篇论文它是否是这个领域当中比较优秀或者是代表作的方法常常是看有多少人引用它，但是这种判断方法可以使用自己引用自己或者作者之间互相引用而达到作弊，现在对于论文的影响因子的作弊方法计算相对复杂。pagerank的算法思想借助于文献计量学(Bibliometrics)。 在浩瀚的网络环境中，我们可以将互联网可以看成是文档之间超链接组成的有向图，其中节点是互联网中的文档，而边则是互联网之间的超链接。我们访问网页的时 候总是习惯于首先输入一个网址，然后在根据网站上的链接，进入其他的网站。对于这种情况我们认为他是一个random suffer，他首先进入一个网页，然后又以一个随机的方式进入另一个网页。在pagerank算法中实际中分两种，一种是主题相关的，另一种是与主题无 关的。例如：当random suffer进入网页A，而A又有三个指向其他三个网页的超链接B,C,D那么他有A到B，C或者D的概率就是1/3。对于从互联网中的一个网站进入到另 一个网站，我们可以与一维马尔可夫链的性质联系起来，对于马尔可夫链来说是从一个状态转换到另一个状态。当马尔科夫链达到稳定状态时，所求出来的转移矩阵 的值，就称为pagerank的值。 记录网站之间的链接关系的有向图，我们称为网络图的链接矩阵，一般用A来表示，对于从一个状态转换到另一个状态的概率，我们称之为状态转移概率，而有这些 概率所组成的矩阵，称为状态转移矩阵，在这里我们用用P来表示。一个random suffer直接进入一个网站的概率是α。 根据pagerank的计算公式，我们现在只需要知道状态转移的概率就能够计算出每个节点的pagerank的值。状态转移概率矩阵P方法如下： 首先构建网络图的邻接矩阵A （N*N矩阵，其中N为马尔可夫链中状态个数）对于邻接矩阵中其中有一行全部为0的元素，将其用1/N代替。对于一行不全为0的元素，构建由下面几个步骤完成； 对于不是1的元素由1/n(n为这行中所有不为0的元素的个数)；图1中的分别为1/3。 将结果矩阵乘以(1-α)； 对于结果矩阵中的每一项加上α/N。 这个可能和我们在平常所看到的pagerank的算法的书写公式可能会有所不一样，因为我们常常见到的pagerank的算法公式常常如下所示： 其中PR(B)为B的pagerank的值，L(B)为网页B中的超链接数(outlink)。其实这个公式的算法和上面所描述的算法是一样的，只是表现 上不同而已，如果将上述的状态转移概率在计算的时候将两个α/N和后面的部分分开来计算的话，每一项的结果和上述所得的结果一致（这里的1-d对应于状态 转移矩阵计算用的α）。]]></description>
		<wfw:commentRss>http://www.rushcj.com/laomi/archives/9/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
