- 博客(8)
- 收藏
- 关注
原创 网络科学导论——1引言
1.网络时代的网络研究1.1 Internet针对不同的预测和改善Internet性能的目的,研究Internet拓扑性质及演化并建立合适的拓扑模型是非常重要的。对于Internet拓扑结构的研究可以分为以下几个层次(1)IP地址层:接入Internet的IP地址数以亿计,而一个IP地址可能被多个设备使用,因此接入Internet的设备数量就更大了。随着无线接入方式的普及,就更加难以掌握Internet上IP地址之间的连接关系。不承担路由功能的IP地址是处于网络边缘的叶子节点。(2)路由器层:一个
2021-06-26 15:43:01
324
原创 Applied Social Network Analysis in Python 4——Ta Demonstration Loading Graphs In Network
Loading Graphs in Networkimport networkx as nximport matplotlib.pyplot as pltimport numpy as npimport pandas as pdG1 = nx.Graph()G1.add_edges_from([(0, 1), (0, 2), (0, 3), (0, 5),
2021-06-24 15:39:18
113
原创 计算机专业词汇——Day 3
2021/6/4 Day 3converter 变流器frequency converter变频器 digital converter数字转换器 ad converter模数转换器buffer 缓冲,减震器,减轻buffer overflow 缓冲区溢出 buffer memory 存储缓冲区 buffer circuit 缓冲电路ratio 比率,比例inverse ratio 反比率 miss ratio 比例失调 signal-to-noise rati
2021-06-04 11:17:32
172
原创 计算机专业词汇——Day 2
2021/6/3 Day 2bound 受约束的,界限upper bound 上界,最大值 lower bound 下界 branch and bound 分支界限法segment 分割,段,部分line segment 线段 segment length 段长 code segment 代码段,程序段criteria 标准,条件evaluation criteria 评估标准 search criteria 搜索条件 measurement criteria 计量标准perm
2021-06-03 15:40:45
262
3
原创 Applied Social Network Analysis in Python 3——Bipartite Graphs
1. DefinitionBipartite Graphs: a graph whose nodes can be split into two sets L and R and every edge connects an node in L with a node in R .2.Code in pythonBuild a bipartite graph:from networkX.algorithms import bipartiteB = nx.Graph() //No separat
2021-06-02 20:56:41
409
原创 Applied Social Network Analysis in Python 2——Note And Edge Attributes
Note And Edge AttributesAdding node and edge attributees:G=nx.Graph()G.add_edge('A','B',weight=6,relation='family')G.add_node('A',role = 'trader')Accessing node attributes:G.nodes() //list of all nodesG.nodes(data=True) //list of all nodes with
2021-06-02 19:25:25
196
原创 计算机专业词汇——Day 1
计算机专业词汇——Day 1couple 数个,对,夫妇Strong coupling 强耦合 loosely coupled 松耦合coupling model 耦合模式 couple up 把…耦联起来bootstrap 引导程序,辅助程序element 元素,成分,要素,原理,自然环境finite element 有限元 boundary element method 边界元法 and element 与元件,及组件variant 不同的,多样的;变体,转化
2021-06-02 18:21:50
252
1
原创 Applied Social Network Analysis in Python 1——Network Definition And Vocabulary
@Appliied Social Network Analysis in PythonNetwork Definition And VocabularyDefinitionNetwork (or Graph):A representation of connections among a set of items.items are called nodes (or vertices )connections are called edges (or link or ties)功能快捷键撤
2021-06-02 17:09:09
237
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人