graphon
[[concept]]
A more general definition is
where
Show that if the CDF of
The codomain of
^note-2

From left to right:
- block model with same community sizes
- different community sizes, and
^example
Graphon as a limiting object for some sequence of graphs

Graphon as generating object for finite graphs

Review
We can think of a graphon as a graph with {==ass||an uncountable number of nodes
A graphon is a {symmetric, bounded, measurable||(3 properties)} function
References
Mentions
const modules = await cJS()
const COLUMNS = [
{ id: "Name", value: page => page.$link },
{ id: "Last Modified", value: page => modules.dateTime.getLastMod(page) },
];
return function View() {
const current = dc.useCurrentFile();
// Selecting `#game` pages, for example.
let queryString = `@page and linksto(${current.$link})`;
let pages = dc.useQuery(queryString);
// check types
pages = pages.filter( (p) => !modules.typeCheck.checkAll(p, current) ).sort()
return <dc.Table columns={COLUMNS} rows={pages} paging={20}/>;
}
const { dateTime } = await cJS()
return function View() {
const file = dc.useCurrentFile();
return <p class="dv-modified">Created {dateTime.getCreated(file)} ֍ Last Modified {dateTime.getLastMod(file)}</p>
}