-
Notifications
You must be signed in to change notification settings - Fork 0
/
monothesis.lyx
30176 lines (21597 loc) · 557 KB
/
monothesis.lyx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#LyX 2.3 created this file. For more info see http://www.lyx.org/
\lyxformat 544
\begin_document
\begin_header
\save_transient_properties true
\origin unavailable
\textclass memoir
\begin_preamble
% Adds thingies to top of pages
%\renewcommand{\thefootnote}{\fnsymbol{footnote}} % Makes footnotes numbers supposedly but doesn't work
% Fix \framed clash between minted and ...other stuff
\makeatletter
\@namedef{[email protected]}{9999/12/31}
\@namedef{[email protected]}{}
\makeatother
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyfoot[LE,RO]{\thepage} % Adds page number to left/right
\usepackage{minted} % Easy code formatting
\usepackage[framemethod=TikZ]{mdframed}
\usepackage{pifont}
\newenvironment{warning}
{\par\begin{mdframed}[linewidth=1pt,linecolor=red,backgroundcolor=gray!10,roundcorner=8pt]%
\begin{list}{}{\leftmargin=1cm
\labelwidth=\leftmargin}\item[\Large\ding{45}]}
{\end{list}\end{mdframed}\par}
\newenvironment{note}
{\par\begin{mdframed}[linewidth=1pt,linecolor=yellow,backgroundcolor=gray!5,roundcorner=8pt]%
\begin{list}{}{\leftmargin=1cm
\labelwidth=\leftmargin}\item[\Large\ding{45}]}
{\end{list}\end{mdframed}\par}
% ta https://tex.stackexchange.com/questions/13387/how-to-get-part-name-in-latex#13392
%\newcommand*\parttitle{}
%\let\origpart\part
%\renewcommand*{\part}[2][]{%
% \ifx\\#1\\% optional argument not present?
% \origpart{#2}%
% \renewcommand*\parttitle{#2}%
% \else
% \origpart[#1]{#2}%
% \renewcommand*\parttitle{#1}%
% \fi
%}
%\let\Oldpart\part
%\newcommand{\parttitle}{}
%\renewcommand{\part}[1]{\pagebreak\Oldpart{#1}\renewcommand{\parttitle}{#1}}
% neither of these seem to work on anything but the first part
\fancyhead[LE]{\partname~\thepart}%.~~\parttitle}
%\fancyhead[RO]{\nouppercase{\rightmark}}
\fancyhead[LO]{}
\fancyhead[RE]{}
\fancyhead[RO]{\nouppercase{\leftmark}}
\fancyfootoffset[LE, RO]{1cm}
%\fancyhead[RO]{%
%\small\sffamily\sc\rightmark\makebox[1cm]{\{\thepage\}}}
%\fancyhead[LE]{%
%\small\sffamily\sc \makebox[1cm]{\{\thepage\}}\leftmark}
%\fancyhead[LE,RO]{\rightmark}
%\fancyhead[LO,RE]{\leftmark}
\cfoot{} %Need to faff with margins some more.
%\chead{Robustness of Complex Networks}
%\rhead{Oliver Blanthorn}
%\lhead{\date{\today}}
%\usepackage[oldstyle, proportional]{fbb}
\usepackage[oldstyle, proportional]{ebgaramond}
% Font captions: make them smaller, sans, endash, bold
\usepackage[font={footnotesize,sf},labelsep={endash},labelfont={bf}]{caption}
% Heading
%\usepackage{sectsty}
%\allsectionsfont{\sffamily\raggedright} %Makes section titles sans, ragged
\usepackage{lettrine} % Drop caps
\definecolor{Rubricated}{rgb}{0.83,0.25,0.11}
% Nice but bit OTT
% Whole list of fonts here https://tug.dk/FontCatalogue/otherfonts.html#initials
%\input GoudyIn.fd
%\newcommand*\initfamily{\usefont{U}{GoudyIn}{xl}{n}}
%\newcommand{\MyLettrine}[2]{\lettrine[nindent=0.2em,lines=4,lraise=-0.1,findent=1pt]{\color{Rubricated}\initfamily{#1}}{#2}}
\newcommand{\MyLettrine}[2]{\lettrine[nindent=0.2em,lines=2,lraise=0.1,findent=1pt]{\color{Rubricated}\textin{#1}}{#2}}
\usepackage{titlesec}
\titlespacing*{\section}{0pt}{0.5\baselineskip}{0.2\baselineskip}
\titlespacing*{\subsection}{0pt}{0.5\baselineskip}{0.2\baselineskip}
\titlespacing*{\subsubsection}{0pt}{0.5\baselineskip}{0.2\baselineskip}
\titlespacing*{\paragraph}{0pt}{0.5\baselineskip}{0.2\baselineskip}
% Get rid of date
%\date{}
% Unsure what this did
%\usepackage{titling}
%\pretitle{%
%\begin{center}\LARGE
%\rule{6in}{0.8pt}\par
%}
%\posttitle{\par\rule{6in}{0.8pt}\end{center}}
%\setlength{\droptitle}{-10em}
% Typography
% pdftex only %
\usepackage[activate={true,nocompatibility},final,protrusion=true,expansion,tracking=false,kerning=true,spacing=true,factor=1000,stretch=20,shrink=20]{microtype}
%\usepackage[activate={true,nocompatibility},final,protrusion=true,expansion,factor=1000,stretch=20,shrink=20]{microtype}
%\definecolor{greyn}{RGB}{80,170,80}
%\renewcommand\familydefault{\sfdefault}
% Make abstract less gigantic
%\renewenvironment{abstract}
% {\small
% \begin{center}
% \sffamily\bfseries \abstractname\vspace{-.5em}\vspace{0pt}
% \end{center}
% \list{}{%
% \setlength{\leftmargin}{5mm}% <---------- CHANGE HERE
% \setlength{\rightmargin}{\leftmargin}%
% }%
% \item\relax}
% {\endlist}
\makeatletter
\g@addto@macro\@floatboxreset\centering % Automatically centres figures
\makeatother
\pretitle{%
\begin{center}\LARGE
\rule{6in}{0.8pt}\par
}
%\posttitle{\par\rule{6in}{0.8pt}\end{center}}
%\usepackage[dvipsnames]{xcolor} % Gives us nice colours to use. https://en.wikibooks.org/wiki/LaTeX/Colors#The_68_standard_colors_known_to_dvips
%\usepackage[ntheorem]
\newtheorem{hyp}{Hypothesis} % Hypothesis layout
% Configure quotations
\epigraphfontsize{\small\itshape}
\setlength\epigraphwidth{8cm}
\setlength\epigraphrule{0pt}
%Make nomenclature links clickable
\def\pagedeclaration#1{, \hyperlink{page.#1}{page\nobreakspace#1}}
\makenomenclature
%\aliaspagestyle{chapter}{default}
\copypagestyle{mine}{plain}
\makeevenfoot{plain}{\thepage}{}{}
\makeoddfoot{plain}{}{}{\thepage}
\makerunningwidth{plain}{1.14\textwidth}{} %this is so hacky - make chapter page number be in right place
\aliaspagestyle{chapter}{mine}
% Try to reduce overflowing lines
%\pretolerance=150
\setlength{\emergencystretch}{2em}
\end_preamble
\options refpage, intoc, openany
\use_default_options true
\maintain_unincluded_children false
\language british
\language_package default
\inputencoding utf8
\fontencoding global
\font_roman "garamondx" "default"
\font_sans "helvet" "default"
\font_typewriter "default" "default"
\font_math "auto" "auto"
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 90 100
\font_tt_scale 100 100
\use_microtype false
\use_dash_ligatures false
\graphics default
\default_output_format pdf2
\output_sync 0
\bibtex_command default
\index_command default
\float_placement tbp
\paperfontsize 12
\spacing other 1.2
\use_hyperref true
\pdf_title "The Robustness of Complex Networks"
\pdf_author "Oliver Blanthorn"
\pdf_bookmarks true
\pdf_bookmarksnumbered false
\pdf_bookmarksopen false
\pdf_bookmarksopenlevel 1
\pdf_breaklinks true
\pdf_pdfborder true
\pdf_colorlinks false
\pdf_backref false
\pdf_pdfusetitle true
\pdf_quoted_options "linkcolor=black, citecolor=black"
\papersize a4paper
\use_geometry true
\use_package amsmath 1
\use_package amssymb 1
\use_package cancel 1
\use_package esint 1
\use_package mathdots 1
\use_package mathtools 1
\use_package mhchem 1
\use_package stackrel 1
\use_package stmaryrd 1
\use_package undertilde 1
\cite_engine natbib
\cite_engine_type authoryear
\biblio_style plainnat
\multibib chapter
\use_bibtopic true
\use_indices false
\paperorientation portrait
\suppress_date true
\justification true
\use_refstyle 1
\use_minted 0
\index Index
\shortcut idx
\color #008000
\end_index
\leftmargin 4cm
\topmargin 2.5cm
\rightmargin 2.5cm
\bottommargin 4cm
\headsep 0.5cm
\footskip 0cm
\columnsep 0.8cm
\secnumdepth 2
\tocdepth 1
\paragraph_separation skip
\defskip smallskip
\is_math_indent 0
\math_numbering_side default
\quotes_style british
\dynamic_quotes 1
\papercolumns 1
\papersides 2
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header
\begin_body
\begin_layout Title
\size small
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
vspace{-7.5em}
\end_layout
\end_inset
\size huge
Characterisation of Complex Networks from their Topologies
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
thispagestyle{empty}
\backslash
begin{center}
\end_layout
\begin_layout Plain Layout
{
\backslash
Large
\end_layout
\begin_layout Plain Layout
A thesis submitted to The University of Manchester for the degree of
\backslash
\backslash
Doctor of Philosophy
\backslash
\backslash
in the Faculty of Science and Engineering
\backslash
\backslash
\end_layout
\begin_layout Plain Layout
\backslash
vspace{5em}
\end_layout
\begin_layout Plain Layout
\backslash
liningnums{2019}
\backslash
\backslash
\end_layout
\begin_layout Plain Layout
\backslash
vspace{5em}
\end_layout
\begin_layout Plain Layout
\backslash
LARGE Oliver A Blanthorn
\backslash
\backslash
\end_layout
\begin_layout Plain Layout
\backslash
vspace{4em}
\end_layout
\begin_layout Plain Layout
\backslash
Large School of Engineering
\backslash
\backslash
Department of Computer Science
\end_layout
\begin_layout Plain Layout
}
\end_layout
\begin_layout Plain Layout
\backslash
end{center}
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset Newpage newpage
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
pagestyle{plain}
\backslash
microtypesetup{protrusion=false}
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
begin{KeepFromToc}
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset CommandInset toc
LatexCommand tableofcontents
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
vspace{1em}
\end_layout
\end_inset
\series bold
Word count: 36,000
\series default
\begin_inset Note Note
status open
\begin_layout Plain Layout
update this before submission!
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
end{KeepFromToc}
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset Newpage newpage
\end_inset
\end_layout
\begin_layout Standard
\begin_inset FloatList figure
\end_inset
\begin_inset Note Note
status open
\begin_layout Plain Layout
check these names etc
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset Newpage newpage
\end_inset
\end_layout
\begin_layout Standard
\begin_inset FloatList table
\end_inset
\end_layout
\begin_layout Standard
\begin_inset Newpage newpage
\end_inset
\end_layout
\begin_layout Standard
\begin_inset FloatList algorithm
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
microtypesetup{protrusion=true}
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\size small
\begin_inset Newpage newpage
\end_inset
\end_layout
\begin_layout Chapter*
Abstract
\end_layout
\begin_layout Standard
\begin_inset Note Note
status open
\begin_layout Plain Layout
Tex note:
\backslash
textin{*} for A, D, F, G, L, N, O, Q, T and (much worse) X.
produces really beautiful illuminated letters.
Worth rewording every chapter just for that?
\end_layout
\begin_layout Plain Layout
https://tex.stackexchange.com/questions/228993/remove-space-in-reference-in-et-al#
answer-229135 if
\begin_inset Quotes xld
\end_inset
et al.
,
\begin_inset Quotes xrd
\end_inset
reappears but remember you use authordate4
\end_layout
\end_inset
Complex networks appear everywhere in the world.
They describe everything from the Internet and transport networks to neuronal
networks and social networks.
Characterising these networks—that is, describing them quantitatively—is
vitally important to understanding them, comparing them and tracking their
temporal evolution.
The connection patterns, or topologies, of networks are often very different
across different networks and sometimes even between different parts of
a single network, or over time in temporal networks.
This work focuses particularly on these connection patterns and how they
can characterise networks at multiple scales: we use the topology to characteri
se nodes, communities and entire networks.
\end_layout
\begin_layout Standard
On the subject of node characterisation, we demonstrate the merits of using
colour in graphlet profiles when characterising ego-networks, using this
technique to discover that, in scientific co-authorship networks, the proportio
n of graphlets of a specific kind centred on an author early in their career
is correlated with that author's final academic career length.
These graphlets which are correlated with career length are 4-stars; induced
subgraphs containing four nodes where one node is the author and the other
three nodes only have a link to the author.
\end_layout
\begin_layout Standard
For whole-network characterisation, we use matrix decomposition of data
matrices formed from topological properties such as degree-mixing matrices
and graphlet profiles to clearly distinguish between real networks and
network models and track changes in networks over time.
We introduce the term
\begin_inset Quotes xld
\end_inset
piecewise static networks
\begin_inset Quotes xrd
\end_inset
to describe the application of standard static network analysis to temporal
networks.
\end_layout
\begin_layout Standard
Finally, on community characterisation, we introduce a new way of assessing
the goodness-of-fit for tensor decompositions of temporal networks by applying
adjusted mutual information and employ this technique to throw more light
on software dependency networks—where we use it to highlight the uniqueness
of the R language's software package ecosystem due to R's
\begin_inset Quotes xld
\end_inset
rolling-release cycle
\begin_inset Quotes xrd
\end_inset
policy—and semantic networks—where we start to study the evolution of the
English language over the past thousand years.
\end_layout
\begin_layout Chapter*
Declaration
\end_layout
\begin_layout Standard
No portion of the work referred to in the thesis has been submitted in support
of an application for another degree or qualification of this or any other
university or other institute of learning.
\end_layout
\begin_layout Chapter*
Copyright
\end_layout
\begin_layout Enumerate
The author of this thesis (including any appendices and/or schedules to
this thesis) owns certain copyright or related rights in it (the “Copyright”)
and s/he has given The University of Manchester certain rights to use such
Copyright, including for administrative purposes.
\end_layout
\begin_layout Enumerate
Copies of this thesis, either in full or in extracts and whether in hard
or electronic copy, may be made only in accordance with the Copyright,
Designs and Patents Act 1988 (as amended) and regulations issued under
it or, where appropriate, in accordance with licensing agreements which
the University has from time to time.
This page must form part of any such copies made.
\end_layout
\begin_layout Enumerate
The ownership of certain Copyright, patents, designs, trademarks and other
intellectual property (the “Intellectual Property”) and any reproductions
of copyright works in the thesis, for example graphs and tables (“Reproductions
”), which may be described in this thesis, may not be owned by the author
and may be owned by third parties.
Such Intellectual Property and Reproductions cannot and must not be made
available for use without the prior written permission of the owner(s)
of the relevant Intellectual Property and/or Reproductions.
\end_layout
\begin_layout Enumerate
Further information on the conditions under which disclosure, publication
and commercialisation of this thesis, the Copyright and any Intellectual
Property and/or Reproductions described in it may take place is available
in the University IP Policy (see
\begin_inset Newline newline
\end_inset
\begin_inset CommandInset href
LatexCommand href
target "http://documents.manchester.ac.uk/DocuInfo.aspx?DocID=24420"
\end_inset
), in any relevant Thesis restriction declarations deposited in the University
Library, The University Library’s regulations (see
\begin_inset CommandInset href
LatexCommand href
target "http://www.library.manchester.ac.uk/about/regulations/"
\end_inset
) and in The University’s policy on Presentation of Theses.
\end_layout
\begin_layout Chapter*
Acknowledgements
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
epigraph{``Muad'Dib learned rapidly because his first training was in how
to learn.
And the first lesson of all was the basic trust that he could learn.
It's shocking to find how many people do not believe they can learn, and
how many more believe learning to be difficult.
Muad'Dib knew that every experience carries its lesson.
\begin_inset Quotes xrd
\end_inset
}{---
\backslash
textup{Frank Herbert,} Dune}
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\size small
This work bears only my name but it is the product of everyone who helped
me along the way to reach this point.
I shall do a great disservice to most of these people as I only have room
to thank a few.
\end_layout
\begin_layout Standard
\size small
First and foremost, I must acknowledge that I owe a great debt to my supervisor,
Dr Eva Navarro-López.
I'm certain this would be a far lesser work without her unwavering support
and strength.
I don't know how she does it.
\end_layout
\begin_layout Standard
\size small
I would also like to thank my family.
Mum, thanks for always pushing me to work hard and ensuring that I always
had the opportunity to have a great education.
Thanks for looking after the koi pond and the watercress.
Tara, keep chasing whatever makes you happy, whether that's ecology, field
sites, or your daughter Eilah! I'm equal parts sorry and glad that the
experimental work for thesis was a little less involved than your chasing
primates across the Congo.
Eilah, I can't wait to see what you do.
Dad: this thesis is really for you.
Now that you can't read this I think it is safe for me to admit that, yes,
being forced to play
\begin_inset Quotes xld
\end_inset
Mavis Beacon Teaches Typing
\begin_inset Quotes xrd
\end_inset
on MS-DOS before I was allowed a quota of fun video-games was perhaps a
little useful and that your abject refusal to give me a straight answer
to any question probably instilled the curiosity (and, if we're honest,
intransigency) that meant I was able to complete this thesis.
\end_layout
\begin_layout Standard
\size small
Finally, Harri: I am perpetually baffled why you put up with this curmudgeon,
but I am glad that you have.
Thanks for all of your support, especially in these last few months while
I produced this thesis and gradually morphed into a troglodyte.
\end_layout
\begin_layout Standard
\size small
I'm grateful that this work was supported as part of an Engineering and
Physical Sciences Research Council (EPSRC
\begin_inset CommandInset nomenclature
LatexCommand nomenclature
prefix "EPSRC"
symbol "EPSRC"
description "Engineering and Physical Sciences Research Council"
literal "false"
\end_inset
) grant, project reference
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
liningnums{EP/I028099/1}
\end_layout
\end_inset
.
\end_layout
\begin_layout Chapter*
Availability of data and material
\begin_inset CommandInset label
LatexCommand label
name "chap:Availability-of-data"
\end_inset
\end_layout
\begin_layout Standard
\end_layout
\begin_layout Standard
The source for this thesis is available at
\begin_inset CommandInset href
LatexCommand href
target "github.com/bovine3dom/thesis"
literal "false"
\end_inset
.
I believe this is a fairly comprehensive list of all the code used in this
work.
If an interested reader feels we have omitted any crucial routines, please
file an issue on the repository for the thesis and we will endeavour to
produce it.
\begin_inset Note Note
status open
\begin_layout Plain Layout
make all links here public / real.
Consider Zenodo DOIs.
Sort out wrapping on this page and throughout thesis.
\end_layout
\end_inset
\end_layout
\begin_layout Section*
Chapter
\begin_inset CommandInset ref
LatexCommand ref
reference "chap:Graphlets:-colour,-profiles"
plural "false"
caps "false"
noprefix "false"
\end_inset
\end_layout
\begin_layout Standard
The programmes described in this chapter are available from:
\end_layout
\begin_layout Itemize
\begin_inset CommandInset href
LatexCommand href
target "https://github.com/bovine3dom/ColoredGraphs.jl"
literal "false"
\end_inset
,
\end_layout
\begin_layout Itemize
\begin_inset CommandInset href
LatexCommand href
target "https://github.com/bovine3dom/Nauty.jl"
literal "false"
\end_inset
,
\end_layout
\begin_layout Itemize
\begin_inset CommandInset href
LatexCommand href
target "https://github.com/bovine3dom/Graphlets.jl"
literal "false"
\end_inset
.
\end_layout
\begin_layout Section*
Chapter
\begin_inset CommandInset ref
LatexCommand ref
reference "chap:Career-length-in"
plural "false"
caps "false"
noprefix "false"
\end_inset
\end_layout
\begin_layout Standard
The co-authorship network used in this chapter is available from:
\end_layout
\begin_layout Itemize
\begin_inset CommandInset href
LatexCommand href
target "https://aminer.org/dynamic_coauthor"
\end_inset
.
\end_layout
\begin_layout Section*
Chapter
\begin_inset CommandInset ref
LatexCommand ref
reference "chap:Construction-of-data"
plural "false"
caps "false"
noprefix "false"
\end_inset
\end_layout
\begin_layout Standard
The software used in this chapter is available from:
\end_layout
\begin_layout Itemize
\begin_inset CommandInset href
LatexCommand href
target "https://github.com/bovine3dom/GraphPCA.jl"
literal "false"
\end_inset