|
You are here |
www.johnnylogic.org | ||
| | | | |
faculty.ucr.edu
|
|
| | | | | ||
| | | | |
logaonresearch.wordpress.com
|
|
| | | | | Fresher's guide to basic Social Network Analysis (SNA) Terminology: Alter A person to whom the focal individual is connected Betweenness centrality A measure of how often a given vertex lies on the shortest path between two other vertices, or the vertex's role as a 'bridge'/ quantifies the number of times a node acts as a... | |
| | | | |
www.jeremykun.com
|
|
| | | | | Graphs are among the most interesting and useful objects in mathematics. Any situation or idea that can be described by objects with connections is a graph, and one of the most prominent examples of a real-world graph that one can come up with is a social network. Recall, if you aren't already familiar with this blog's gentle introduction to graphs, that a graph $ G$ is defined by a set of vertices $ V$, and a set of edges $ E$, each of which connects two vertices. | |
| | | | |
sitr.us
|
|
| | | In type theory a unit type is any type that represents exactly one possible value. The unit types in TypeScript include null, undefined, and literal types. TypeScript also has the type void which is used as the return type for functions that don't have an explicit return value. In JavaScript a function that does not explicitly return implicitly returns undefined; so at first glance it would seem that void is an alias for the undefined type. But it is not! ... | ||