Pajek的一些笔记

网络文件的创建

  1. Vertices      15
    1 "m02"                                    0.1857    0.2781    0.5000 box
    2 "m03"                                    0.5482    0.6169    0.5000
    3 "w07"                                    0.2219    0.4526    0.5000 ellipse
    *Arcs 
    2       10 1 
    2        9 1 
    2       13 1 
    3       10 1 
    *Edegs
    
  2. *Vertices      15
    1 "m02"                                    0.1857    0.2781    0.5000 box
    2 "m03"                                    0.5482    0.6169    0.5000
    3 "w07"                                    0.2219    0.4526    0.5000 ellipse
    (......)
    *Arcslist
    2 10 9 13 10
    3 10
    (......)
    *Edgeslist
    
  3. 如果网络导入时是第一中模式,在Pajek打开后,双击文件路径显示区,可以以第二种模式查看文件。同理,在Partition分区也可以这样查看clu文件。

#收缩网络(Shrink network to get global view)

在De Nooy, W., Mrvar, A., & Batagelj, V. (2018). Exploratory social network analysis with Pajek: Revised and expanded edition for updated software中,举例World System网络。当我们不再只局部某些国家间的贸易关系,可以在添加Partition文件标注所属大洲后,观察整体网络中哪些洲更重要。

 >To shrink a network, replace a subset of its vertices with one new vertex that is  
 >incident to all lines that were incident with the vertices of the subset in the original 
 >network. (De Nooy, W., Mrvar, A., & Batagelj, V. (2018). Exploratory social network analysis with Pajek: Revised and expanded edition for updated software)

这里开始用收缩uploader网络:

  1. Network已创建,Parition的clu文件按照以下格式,数字标注UP主分类

*Vertices 180
3
10
9
2
1
10
15
9
1

2.在网络分区和Partition分区分别选定文件,command

Operations > Network + Partiton > Shrink network

  • 跳出的选项可以选择哪些cluster进行收缩,哪些不进行收缩。默认选项为【0】,【1】。

  • 用command查询收缩后的文件,或者直接双击路径。

Partitions > View/ Edit

     1.          3 - #U1
     2.         10 - #U2
     3.          9 - #U3
     4.          2 - #U4
     5.          1 - #U5
     6.         15 - #U7
     7.          8 - #U10
  1. 收缩后的网络有17个nodes

  2. 直接在查看中更改label标签,在每个点后加上所属的分组编号

      1.          3 - Comic#U1
      2.         10 - Games#U2
      3.          9 - Fun#U3
    

你可能感兴趣的:(Pajek)