32
A D A R IF Adapted from: https://cran.r-project.org/web/packages/IsingFit/IsingFit.pdf

A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

  • Upload
    others

  • View
    3

  • Download
    0

Embed Size (px)

Citation preview

Page 1: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

A � � � � � � �D

A �������� �� R ������� I����F��

Adapted from:

https://cran.r-project.org/web/packages/IsingFit/IsingFit.pdf

���

Page 2: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

APPENDIX D. A TUTORIAL ON R PACKAGE ISINGFIT

This tutorial provides and explanation of R package IsingFit (Van Borkulo, Epskamp, & Ro-bitzsch, ���6). IsingFit �ts Ising models (Ising, ����) using the eLasso method. eLassocombines `

1

-regularized logistic regression with model selection based on the ExtendedBayesian Information Criterion (EBIC). EBIC is a �t measure that identi�es relevant relationshipsbetween binary variables. The resulting network consists of variables as nodes and relevant re-lationships as edges. In this tutorial, we will provide a short introduction to eLasso — pleasesee Chapter � and Appendix A for more detailed information — and illustrate how IsingFit()

can be used, what options there are and how applying different options affect results. To il-lustrate this, we provide examples with real data and provide the accompanying R code. Thevarious arguments of IsingFit() are explained and the impact of adjusting the arguments isillustratedwith data of the Virginia Adult Twin Study of Psychiatric and Substance Use Disorders(VATSPUD; Kendler & Prescott, ���6; Prescott et al., ����). For this tutorial, we use the data ofpresence/absence of the �� disaggregated symptoms of MDD for at least � days during the pre-vious year of 8��� individuals from the population as used in Chapter � of this dissertation. ThisAppendix is an extended version of https://cran.r-project.org/web/packages/IsingFit/IsingFit.pdf.

D.� Introduction

The edges in a network represent conditional dependencies: if there is an edge between symp-tom X

1

and X2

, they are related even after conditioning on (or controlling for) all other variablesin the network. This means that the relationship between X

1

and X2

cannot be explained by anyof the other variables. It is not a spurious relationship that arose because the two are relatedthrough another (third) confounding variable in the dataset. Conversely, if two variables are notconnected, say X

2

and X3

, this means that they are not related. Not directly related, to be morespeci�c. They might be correlated, but only because they share connections to other variablesin the network. When conditioned on all other variables, the relationship between X

2

and X3

disappears — it is explained away by the other variables. The network representing conditionaldependencies is also called aMarkov Random Field (Kindermann & Snell, ��8�; Lauritzen, ���6).

For continuous data, conditional dependencies can be established by means of the covari-ance matrix of the observations of the variables. A zero entry in the inverse of the covariancematrix represents a conditional independence between the focal variables, given the other vari-ables (Speed & Kiiveri, ��86). The simplest model that can explain the data as adequately aspossible according to the principle of parsimony, can be found with different strategies to �nda sparse approximation of the inverse covariance matrix. One of the strategies to �nd such asparse approximation is to impose an `

1

-penalty (also called lasso) on the estimation of theinverse covariance matrix (Foygel & Drton, ����; Friedman et al., ���8; Ravikumar et al., ����).The `

1

-penalty guarantees shrinkage of partial correlations and puts others exactly to zero (Tib-

���

Page 3: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

D.�. ARGUMENTS

shirani, ���6). Another strategy entails estimating the neighborhood of each variable individu-ally with `

1

-penalized regression (Meinshausen & Bühlmann, ���6), instead of imposing an `1

-penalty on the inverse covariance matrix and is, therefore, an approximation to the `

1

-penalizedinverse covariancematrix. This approximationmethod using `

1

-penalized regression is an inter-esting alternative — it is computationally ef�cient and asymptotically consistent (Meinshausen& Bühlmann, ���6) — that can also be applied to binary data and is implemented in IsingFit.

D.� Arguments

Themain function of package IsingFit is function IsingFit(). To run IsingFit(), the only inputthat is required is the data set. This results in output according to default settings of severalarguments:

IsingFit(x, AND = TRUE, gamma = 0.25, plot = TRUE, progressbar = TRUE,

lowerbound.lambda = NA, ...)

x

The �rst argument (x) — and the only one you have to enter to run the default function — is thedata. Thismust be amatrix in which each variable is represented by a column and each observa-tion by a row. Observations should be independent. An example of a data set with independentobservations is one in which rows contain scores on items of a questionnaire of different indi-viduals. Whether person i (on row i ) has a set of scores on items does not depend on the scoresof person j (on row j ).

The following code is used to estimate a default network with our example data, in whichData is the name of the VATSPUD dataset and the output of IsingFit is stored under the nameRes.

Res <- IsingFit(Data)

The estimated network structure is shown in Figure D.�, which is simular to the empiricalnetwork in Figure �.�, Chapter �.

AND

This is a logical indicating whether the AND-rule is used or not. When AND = TRUE, the AND-rule is applied, requiring both regression coef�cients Ø j k and Øk j to be nonzero to result in anedge between node j and k (see Chapter � and Appendix A for an extensive explanation ofthe estimation procedure). A more lenient option is to set the AND argument to AND = FALSE,thereby applying the OR-rule, requiring only one of Ø j k and Øk j to be nonzero. For our dataset

���

Page 4: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

APPENDIX D. A TUTORIAL ON R PACKAGE ISINGFIT

depint

los

gai

dap

iap

iso

hso

agi

ret

fat

wor

con

dea

Figure D.�: The estimated network structure based on the VATSPUD data, with the default set-ting of IsingFit(). dep - depressed mood; int - loss of interest; los - weight loss; gai - weightgain; dap - decreased appetite; iap - increased appetite; iso - insomnia; hso - hypersomnia; ret -psychomotor retardation; agi - psychomotor agitation; fat - fatigue; wor - feelings of worthless-ness; con - concentration problems; dea - thoughts of death.

there is no observable difference in the resulting network structure when applying the AND- orOR-rule. This is because of the high power due to high sample size (n = 8973). When the poweris not high enough to estimate a reasonable network structure — due to an unfavorable ratio ofnumber of nodes and sample size — one might use the OR-rule. Note that this might result inmore spurious connections (false positives).

In Figure D.�, we show the result of applying the AND and OR-rule when power is low. As canbe seen in the code below, we used a subsample of our original VATSPUD dataset in which onlythe �rst ��� individuals are included.

Res.150.AND <- IsingFit(Data[1:150,], AND=TRUE)

���

Page 5: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

D.�. ARGUMENTS

Res.150.OR <- IsingFit(Data[1:150,], AND=FALSE)

As you can see in Figure D.�, there are a fewmore edges retrievedwhen the OR rule is applied(right panel), compared to when the AND rule is applied (left panel).

depint

los

gai

dap

iap

isohso

agi

ret

fat

wor

con

dea

AND−rule

depint

los

gai

dap

iap

isohso

agi

ret

fat

wor

con

dea

OR−rule

Figure D.�: Network estimation with AND- (left panel) and OR-rule (right panel). Only the �rst ���observations are included in the network estimation procedure.

gamma

With this argument, you can adjust the value of hyperparameter ∞. Hyperparameter ∞ plays arole in Goodness-of-Fit measure EBIC (equation A.��) with which the optimal tuning parameter(i.e., Ω which represents the best set of neighbors of the focal node) is selected (again, see Chap-ter � and Appendix A for an extensive explanation of the estimation procedure of IsingFit). Inessence, ∞ determines the strength of prior information on the size of the model space. It penal-izes the number of nodes in neighborhood selection and puts an extra penalty on the numberof neighbors (see equation A.��). Note that — and this is often misunderstood — when ∞ is setto zero, there will still be regularization and the number of neighbors is still penalized. However,instead of an extra penalty on the size of the model space, the optimal tuning parameter is nowselected with the ordinary BIC instead of the extended BIC.

By increasing ∞, the strength of the extra penalty on the size of the model space increases.A lower value of ∞ — maybe even zero — could be advantageous when the power is low andapplying EBIC results in very few edges or none at all. A higher value of ∞ could be favorablewhen you have high power (a good number of nodes to observations ratio) and want the leastnumber of false positives.

���

Page 6: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

APPENDIX D. A TUTORIAL ON R PACKAGE ISINGFIT

To illustrate the effect of different values of ∞, we used the subsample of ��� individualsand estimated network structures with ∞ = 0, .3, .6,1. As you can see in Figure D.�, the networkbased on ∞= 0 (most left panel) is least sparse (most connections) and ∞= 1 (most right panel)is most sparse. The connections in the latter network have the highest probability of being truepositives: they are still present, while being estimated with a high value of ∞ (i.e., a high extrapenalty on the number of neighbors).

12

3

4

5

6

78

9

10

11

12

13

14

gamma = 0

12

3

4

5

6

78

9

10

11

12

13

14

gamma = 0.3

12

3

4

5

6

78

9

10

11

12

13

14

gamma = 0.6

12

3

4

5

6

78

9

10

11

12

13

14

gamma = 1

Figure D.�: Networks estimation based on the �rst ��� observations of the VATSPUD data withincreasing values of ∞ (from left to right).

plot

A logical indicating whether the estimated network should be plotted.

progressbar

Logical. Should the progressbar be plotted in order to see the progress of the estimation proce-dure? Especially with a large data set, it may take a while before all node-wise regressions areperformed. With the progressbar, you can keep track of the progress of the estimation proce-dure. Defaults to TRUE.

lowerbound.lambda

The minimum value of tuning parameter lambda (regularization parameter). Can be used tocompare networks that are based on different sample sizes. The lowerbound.lambda is basedon the number of observations n in the smallest group:

qlog p

n , where p is the number of vari-ables, that should be the same in both groups. When both networks are estimated with thesame lowerbound for lambda (based on the smallest group), the two networks can be visuallycompared. For a statistical comparison, NCT can be used (see Chapter � and Appendix E for atutorial on the NCT package).

��6

Page 7: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

D.�. OUTPUT

T���� D.�. Thresholds of the symptoms based on the VATSPUD data with default set-ting of IsingFit. See Figure D.� for abbreviations.

symptom thresholddep -�.��int -�.��los -�.��gai -�.8�dap -�.��iap -�.�iso -�.��hso -�.��agi -�.�8ret -�.��fat -�.8�wor -�.��con -�.��dea -�.8�

D.� Output

Function IsingFit returns an IsingFit object and contains several items. Below follows a de-scription of each item.

weiadj

The weighted adjacency matrix. This contains the edge weights. You can use this item to plotthe network with qgraph and adjust the plot as you like. Below you can �nd the code to use theoutput of IsingFit to make your own plot.

qgraph(Res$weiadj, layout=’circular’)

thresholds

A vector that contains the thresholds of the variables. The threshold of a variable representsthe autonomous disposition to be present. For the network in Figure D.� based on the wholesample, the thresholds are all negative (see Table D.�). This means that all symptoms have anautonomeous disposition to be absent. When zooming in on speci�c symptoms, “depressedmood” (dep) has the highest threshold (-�.��). This means that this symptom has the highestprobability of being present in the sample compared to the other symptoms. “Thoughts of death”(dea) has the lowest threshold and, consequently, has the lowest probability of being present inthe sample.

���

Page 8: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

APPENDIX D. A TUTORIAL ON R PACKAGE ISINGFIT

q

The object that is returned by qgraph (class qgraph).

gamma

The value of ∞ that was applied.

AND

A logical indicating whether the AND-rule is applied. If FALSE, the OR-rule was applied.

time

The time it took to estimate the network.

asymm.weights

The asymmetrical weigthed adjacency matrix before applying the AND/OR-rule. These are theoriginal regression coef�cients from the nodewise regressions (see Section �.�.�).

lambda.values

The values of the tuning parameter per node that ensured the best �tting set of neighbors.

��8

Page 9: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

B�����������

aan het Rot, M., Hogenelst, K., & Schoevers, R. A. (����). Mood disorders in everyday life: A sys-tematic review of experience sampling and ecological momentary assessment studies.Clinical psychology review, ��(6), ���–���.

Abegaz, F., &Wit, E. (����). Sparse time series chain graphicalmodels for reconstructing geneticnetworks. Biostatistics, ��(�), �86–���.

Abramson, L. Y., Metalsky, G. I., & Alloy, L. B. (��8�). Hopelessness depression: A theory-basedsubtype of depression. Psychological Review, �6, ��8-���.

Afzali, M. H., Sunderland, M., Teesson, M., Carragher, N., Mills, K., & Slade, T. (����). A networkapproach to the comorbidity between posttraumatic stress disorder andmajor depressivedisorder: The role of overlapping symptoms. Journal of Affective Disorders, ��8, ���–��6.

Agresti, A. (����). An Introduction to Categorical Data Analysis. Wiley.Albert, U., Rosso, G., Maina, G., & Bogetto, F. (���8). Impact of anxiety disorder comorbidity

on quality of life in euthymic bipolar disorder patients: differences between bipolar I and IIsubtypes. Journal of Affective Disorders, ���(�-�), ���–���.

Amaral, L. a. N., Scala, A., Barthélémy, M., & Stanley, H. E. (����). Classes of small-world net-works. Proceedings of the National Academy of Sciences, ��(��), �����–�����.

American Psychiatric Association. (����). Diagnostic and statistical manual ofmental disorders(�th ed., text rev.). American Psychiatric Publishing, Inc.

American Psychiatric Association. (����). The Diagnostic and Statistical Manual of MentalDisorders: DSM �. bookpointUS.

Aseltine, R. H., James, A., Schilling, E. A., & Glanovsky, J. (����). Evaluating the SOSsuicideprevention program: a replication and extension. BMC Public Health, �, �6�.

Baglioni, C., & Riemann, D. (����). Is Chronic Insomnia a Precursor to Major Depression? Epi-demiological and Biological Findings. Current Psychiatry Reports, ��(�), �–8.

Barabási, A. L. (����). Network medicine: a network-based approach to human disease. NatureReviews Genetics, ��(�), �6–68.

Barabási, A. L., & Albert, R. (����). Emergence of scaling in random networks. Science,�86(����), ���–���.

Barrat, A., Barthelemy, M., Pastor-Satorras, R., & Vespignani, A. (����). The architecture ofcomplex weighted networks. Proceedings of the National Academy of Sciences of theUnited States of America, ���(��), ����–����.

���

Page 10: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

Bartz, J. A., & Hollander, E. (���6). Is obsessive-compulsive disorder an anxiety disorder?Progress in Neuro-Psychopharmacology and Biological Psychiatry, ��(�), ��8–���.

Barzel, B., & Barabási, A.-L. (����). Universality in network dynamics. Nature Physics, �(��),6��–68�.

Beard, C., Millner, A. J., Forgeard, M. J. C., Fried, E., Hsu, K. J., Treadway, M. T., . . . Björgvinsson, T.(���6). Network analysis of depression and anxiety symptom relationships in a psychiatricsample. Psychological Medicine, �–��.

Bebbington, P. (��8�). Misery and beyond: the pursuit of disease theories of depression. Inter-national Journal of Social Psychiatry, ��, ��-��.

Beck, A. T. (��8�). Cognitive models of depression. Journal of Cognitive Psychotherapy, �, �-�8.Bejerot, S. (����). An autistic dimension A proposed subtype of obsessive-compulsive disorder.

Autism, ��(�), ���–���.Bekhuis, E., Schoevers, R., Claudia Borkulo, V., Rosmalen, J., & Boschloo, L. (���6). The network

structure of major depressive disorder, generalized anxiety disorder and somatic symp-tomatology. Psychological Medicine, �–��.

Beltz, A. M., Wright, A. G. C., Sprague, B. N., & Molenaar, P. C. M. (���6). Bridging the Nomotheticand Idiographic Approaches to the Analysis of Clinical Data. Assessment, ��(�), ���–��8.

Besag, J. (����). Spatial Interaction and the Statistical Analysis of Lattice Systems. Journal ofthe Royal Statistical Society. Series B (Methodological), �6(�), ���–��6.

Bickel, P. J., & Doksum, K. A. (���6). Mathematical Statistics, Basic Ideas and Selected Topics,Vol. �, (�edition ed.). Upper Saddle River, N.J: Pearson.

Bickel, P. J., & Levina, E. (���8). Covariance regularization by thresholding. Annals of Statistics,�6(6), ����–�6��.

Bilodeau, M., & Brenner, D. (���8). Theory of Multivariate Statistics. Springer Science & BusinessMedia.

Boccaletti, S., Latora, V., Moreno, Y., Chavez, M., & Hwang, D. (���6). Complex networks: Struc-ture and dynamics. Physics Reports, ���(�), ���–��8.

Bolger, N., Davis, A., & Rafaeli, E. (����). Diary methods: Capturing life as it is lived. Annualreview of psychology, ��(�), ���–6�6.

Bonacich, P. (��8�). Power and Centrality: A Family of Measures. American Journal of Sociology,��(�), ����–��8�.

Bonanno, G. A. (����). Loss, trauma, and human resilience: havewe underestimated the humancapacity to thrive after extremely aversive events? American psychologist, ��(�), ��.

Bondy, B. (����). Pathophysiology of depression and mechanisms of treatment. Dialogues inClinical Neuroscience, �(�), �–��.

Borsboom, D. (���8). Psychometric perspectives on diagnostic systems. Journal of ClinicalPsychology, 6�(�), ��8�–���8.

Borsboom, D. (����). A network theory of mental disorders. World Psychiatry, �6(�), �–��.

���

Page 11: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

Borsboom, D., & Cramer, A. (����). Network Analysis: An Integrative Approach to the Structureof Psychopathology. Annual Review of Clinical Psychology, �(�), ��–���.

Borsboom, D., Cramer, A., Schmittmann, V., Epskamp, S., & Waldorp, L. (����). The small worldof psychopathology. PLOS ONE, 6(��), e�����.

Borsboom, D., Rhemtulla, M., Cramer, A., van der Maas, H. L., Scheffer, M., & Dolan, C. V. (���6).Kinds versus continua: a review of psychometric approaches to uncover the structure ofpsychiatric constructs. Psychological medicine, �6(8), ��6�.

Bos, E. H., & Jonge, P. D. (����). Critical slowing down in depression is a great idea that stillneeds empirical proof. Proceedings of the National Academy of Sciences, ���(��), E8�8–E8�8. doi: ��.����/pnas.����6�����

Bos, E. H., & Wanders, R. (���6). Group-Level Symptom Networks in Depression. JAMA Psychi-atry. doi: ��.����/jamapsychiatry.����.����

Bos, F. M., Schoevers, R. A., & aan het Rot, M. (����). Experience sampling and ecologicalmomentary assessment studies in psychopharmacology: A systematic review. EuropeanNeuropsychopharmacology, ��(��), �8��–�86�.

Boschloo, L., Schoevers, R. A., Beekman, A. T. F., Smit, J. H., van Hemert, A. M., & Penninx,B. W. J. H. (����). The four-year course of major depressive disorder: the role of stag-ing and risk factor determination. Psychotherapy and Psychosomatics, 8�(�), ���–�88.

Boschloo, L., Schoevers, R. A., Van Borkulo, C. D., Borsboom, D., & Oldehinkel, A. J. (���6). TheNetwork Structure of Psychopathology in a Community Sample of Preadolescents. [Mis-cellaneous Article]. Journal of Abnormal Psychology, ���(�), ���–6�6.

Boschloo, L., Van Borkulo, C. D., Borsboom, D., & Schoevers, R. A. (���6). A Prospective Studyon How Symptoms in a Network Predict the Onset of Depression. Psychotherapy andPsychosomatics, 8�(�), �8�–�8�.

Boschloo, L., Van Borkulo, C. D., Rhemtulla, M., Keyes, K. M., Borsboom, D., & Schoevers, R. A.(����). The Network Structure of Symptoms of the Diagnostic and Statistical Manual ofMental Disorders. PLOS ONE, ��(�). doi: ��.����/journal.pone.����6��

Boschloo, L., Vogelzangs, N., van den Brink, W., Smit, J. H., Veltman, D. J., Beekman, A. T. F.,& Penninx, B. W. J. H. (����). Alcohol use disorders and the course of depressive andanxiety disorders. The British Journal of Psychiatry: The Journal of Mental Science, ���(6),��6–�8�.

Bouwmans, M. E. J., Bos, E. H., Booij, S. H., Faassen, M. v., Oldehinkel, A. J., & Jonge, P. d. (����,March). Intra- and inter-individual variability of longitudinal daytime melatonin secretionpatterns in depressed and non-depressed individuals. Chronobiology International, ��(�),���–��6.

Bower, G. H. (��8�). Mood and memory. American Psychologist, �6, ���-��8.Bower, P., Kontopantelis, E., Sutton, A., Kendrick, T., Richards, D. A., Gilbody, S., . . . Liu, E. T.-

H. (����). In�uence of initial severity of depression on effectiveness of low intensity

���

Page 12: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

interventions: meta-analysis of individual patient data. British Medical Journal, ��6. doi:��.���6/bmj.f���

Boyd, S., & Vandenberghe, L. (����). Convex optimization. Cambridge university press.Brandes, U. (����). A faster algorithm for betweenness centrality. The Journal of Mathematical

Sociology, ��(�), �6�–���.Brewin, C. R. (��8�). Depression and causal attributions: What is their relation? Psychological

Bulletin, �8, ���-���.Bringmann, L., & Eronen, M. (����). Why use networks: Reconsidering the network approach to

psychopathology.Bringmann, L., Hamaker, E. L., Vigo, D. E., Aubert, A., Borsboom, D., & Tuerlinckx, F. (���6). Chang-

ing Dynamics: Time-Varying Autoregressive Models Using Generalized Additive Modeling.Psychological Methods. doi: ��.����/met�����8�

Bringmann, L., Lemmens, L. H. J. M., Huibers, M. J. H., Borsboom, D., & Tuerlinckx, F. (����). Re-vealing the dynamic network structure of the Beck Depression Inventory-II. PsychologicalMedicine, ��(��), ���–���. doi: e6��88

Bringmann, L., Vissers, N., Wichers, M., Geschwind, N., Kuppens, P., Peeters, F., . . . Tuerlinckx, F.(����). A Network Approach to Psychopathology: New Insights into Clinical LongitudinalData. PLOS ONE, 8(�).

Bringmann, L. F., Pe, M. L., Vissers, N., Ceulemans, E., Borsboom, D., Vanpaemel, W., . . . Kuppens,P. (���6). Assessing Temporal Emotion Dynamics Using Networks. Assessment, ��(�),���–���. doi: ��.����/���������66�����

Brzezniak, Z., & Zastawniak, T. (����). Basic stochastic processes: a course through exercises.Springer.

Buntrock, C., Ebert, D., Lehr, D., Riper, H., Smit, F., Cuijpers, P., & Berking, M. (����). Effectivenessof a web-based cognitive behavioural intervention for subthreshold depression: pragmaticrandomised controlled trial. Psychotherapy and Psychosomatics, 8�(6), ��8–��8.

Butler, A. C., Chapman, J. E., Forman, E.M., & Beck, A. T. (���6). The empirical status of cognitive-behavioral therapy: A review of meta-analyses. Clinical Psychology Review, �6(�), ��–��.

Caner, M., & Kock, A. B. (����). Asymptotically Honest Con�dence Regions for High DimensionalParameters by the Desparsi�ed Conservative Lasso. arXiv preprint arXiv:����.���8.

Cannon, T. D., & Keller,M. C. (���6). Endophenotypes in the genetic analyses ofmental disorders.Annual Review of Clinical Psychology, �, �6�–���.

Carpenter, S. R., & Brock,W. A. (���6). Rising variance: a leading indicator of ecological transition.Ecology Letters, �(�), ���–��8.

Caspi, A., Sugden, K., Mof�tt, T. E., Taylor, A., Craig, I. W., Harrington, H., . . . Poulton, R. (����).In�uence of life stress on depression: moderation by a polymorphism in the �-htt gene.Science, ���, �86-�8�.

Chen, J., & Chen, Z. (���8). Extended Bayesian information criteria for model selection with

���

Page 13: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

large model spaces. Biometrika, ��(�), ���–���.Chen, L., Eaton, W. W., Gallo, J. J., & Nestadt, G. (����). Understanding the heterogeneity of de-

pression through the triad of symptoms, course and risk factors: a longitudinal, population-based study. Journal of Affective Disorders, ��(�), �–��.

Chen, L., Liu, R., Liu, Z. P., Li, M., & Aihara, K. (����). Detecting early-warning signals for suddendeterioriation of complex diseases by dynamical network biomarkers. Scienti�c Reports,�, ���.

Christensen, H., Batterham, P. J., Gosling, J. A., Ritterband, L. M., Grif�ths, K. M., Thorndike, F. P.,. . . Mackinnon, A. J. (���6). Effectiveness of an online insomnia program (SHUTi) forprevention of depressive episodes (the GoodNight Study): a randomised controlled trial.The Lancet Psychiatry, �(�), ���–���.

Chwastiak, L. A., & Von Korff, M. (����). Disability in depression and back pain: evaluation ofthe World Health Organization Disability Assessment Schedule (WHO DAS II) in a primarycare setting. Journal of Clinical Epidemiology, �6(6), ���–���.

Cipra, B. A. (��8�). An introduction to the Ising model. American Mathematical Monthly, ��(��),���–���.

Clark, D. A., & Beck, A. T. (����). Cognitive theory and therapy of anxiety and depression: Con-vergence with neurobiological �ndings. Trends in Cognitive Sciences, ��(�), ��8–���.

Clark, M. S., & Isen, A. M. (��8�). Toward understanding the relationship between feeling statesand social behaviour. In A. H. Hastorf & A. M. Isen (Eds.), Cognitive social psychology.Elsevier.

Cohen, J. (����). Statistical Power Analysis for the Behavioral Sciences. Routledge.Cosci, F., & Fava, G. A. (����). Staging of Mental Disorders: Systematic Review. Psychotherapy

and Psychosomatics, 8�(�), ��–��.Costantini, G., Epskamp, S., Borsboom, D., Perugini, M., Mõttus, R., Waldorp, L. J., & Cramer, A.

(����). State of the aRt personality research: A tutorial on network analysis of personalitydata in R. Journal of Research in Personality, ��, ��–��.

Cox, D. R., & Wermuth, N. (���6). Multivariate Dependencies: Models, Analysis and Interpretation.CRC Press.

Cramer, A., & Borsboom, D. (����). Problems attract problems: A network perspective on men-tal disorders. Emerging Trends in the Social and Behavioral Sciences: An Interdisciplinary,Searchable, and Linkable Resource.

Cramer, A., Borsboom, D., Aggen, S., & Kendler, K. (����). The pathoplasticity of dysphoricepisodes: differential impact of stressful life events on the pattern of depressive symptominter-correlations. Psychological medicine, ��(��), ���–�6�.

Cramer, A., Van Borkulo, C. D., Giltay, E. J., Maas, H. L. J. v. d., Kendler, K. S., Scheffer, M., &Borsboom, D. (���6). Major Depression as a Complex Dynamic System. PLOS ONE,��(��), e��6����. doi: ��.����/journal.pone.��6����

���

Page 14: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

Cramer, A., van der Sluis, S., Noordhof, A., Wichers, M., Geschwind, N., Aggen, S. H., . . . Borsboom,D. (����). Dimensions of Normal Personality as Networks in Search of Equilibrium: YouCan’t Like Parties if You Don’t Like People. European Journal of Personality, �6(�), ���–���.

Cramer, A., Waldorp, L., Van Der Maas, H., & Borsboom, D. (����). Comorbidity: A networkperspective. Behavioral and Brain Sciences, ��(�-�), ���–���.

Cramér, H. (����). Mathematical methods of statistics (Vol. �). Princeton, NJ: Princeton Univer-sity Press.

Csardi, G., & Nepusz, T. (���6). The igraph software package for complex network research.InterJournal, Complex Systems, �6��(�).

Csikszentmihalyi, M., & Larson, R. (����). Validity and Reliability of the Experience-SamplingMethod. In Flow and the Foundations of Positive Psychology (pp. ��–��). Springer Nether-lands.

Dakos, V., Carpenter, S., Brock, W., Ellison, A., Guttal, V., Ives, A., . . . others (����). Methods forDetecting Early Warnings of Critical Transitions in Time Series Illustrated Using SimulatedEcological Data. PLOS ONE, �(�), e�����.

Dakos, V., Nes, E. H. v., Donangelo, R., Fort, H., & Scheffer, M. (����). Spatial correlation asleading indicator of catastrophic shifts. Theoretical Ecology, �(�), �6�–���.

Dakos, V., Scheffer, M., Nes, E. H. v., Brovkin, V., Petoukhov, V., & Held, H. (���8). Slowing down asan early warning signal for abrupt climate change. Proceedings of the National Academyof Sciences, ���(�8), ����8–�����.

Dalege, J., Borsboom, D., van Harreveld, F., van den Berg, H., Conner, M., & van der Maas, H. L. J.(���6). Toward a Formalized Account of Attitudes: The Causal Attitude Network (CAN)Model. Psychological Review, ���(�), �–��.

Demidenko, E. (����). Mixed Models: Theory and Applications with R. John Wiley & Sons.Dijkstra, E. W. (����). A note on two problems in connexion with graphs. Numerische mathe-

matik, �(�), �6�–���.Donohue, J. M., & Pincus, H. A. (����). Reducing the societal burden of depression. Pharma-

coeconomics, ��(�), �–��.Drton, M., & Perlman, M. (����). Multiple Testing and Error Control in Gaussian Graphical Model

Selection. Statistical Science, ��(�), ���–���.Efron, B. (����). Large-Scale SimultaneousHypothesis Testing: TheChoice of aNull Hypothesis.

Journal of the American Statistical Association, ��(�6�), �6–���.Efron, B., & Tibshirani, R. J. (����). An Introduction to the Bootstrap. CRC Press.Ehlers, C. L. (����). Chaos and complexity. Can it help us to understand mood and behavior?

Archives of General Psychiatry, ��(��), �6�–�6�.Ensel, W. M., & Lin, N. (���6). Distal stressors and the life stress process. Journal of Community

Psychology, ��, 66-8�.

���

Page 15: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

Epskamp, S. (����). IsingSampler: Sampling methods and distribution functions for the Isingmodel. Retrieved from github.com/SachaEpskamp/IsingSampler (R package version�.�)

Epskamp, S. (���6). Regularized Gaussian Psychological Networks: Brief Report on the Per-formance of Extended BIC Model Selection. arXiv:�6�6.�����. Retrieved from http://

arxiv.org/abs/1606.05771

Epskamp, S., Borsboom, D., & Fried, E. I. (����). Estimating psychological networks and theiraccuracy: A tutorial paper. Behavior Research Methods, �–�8.

Epskamp, S., Cramer, A., Waldorp, L. J., Schmittmann, V. D., & Borsboom, D. (����). qgraph: Net-work Visualizations of Relationships in Psychometric Data. Journal of Statistical Software,�8(�), �–�8.

Epskamp, S., Deserno, M. K., & Bringmann, L. (����). mlVAR: Multi-Level vector autoregression.Retrieved from http://CRAN.R-project.org/package=mlVAR (R package version �.�.�)

Epskamp, S., & Fried, E. (���6). A Tutorial on Regularized Partial Correlation Networks.arXiv:�6��.���6�.

Epskamp, S., Kruis, J., & Marsman, M. (���6). Estimating psychopathological networks: becareful what you wish for. arXiv:�6��.�8���.

Epskamp, S., Maris, G. K. J., Waldorp, L. J., & Borsboom, D. (���6). Network Psychometrics.In Handbook of Psychometrics. New York: Wiley. Retrieved ����-��-��, from http://

arxiv.org/abs/1609.02818 (arXiv: �6��.��8�8)Epskamp, S., Rhemtulla, M., & Borsboom, D. (���6). Generalized Network Psychometrics: Com-

bining Network and Latent Variable Models.doi: arXiv:�6��.���88

Epskamp, S., Waldorp, L. J., Mõttus, R., & Borsboom, D. (���6). Discovering PsychologicalDynamics: The Gaussian Graphical Model in Cross-sectional and Time-series Data.doi: arXiv:�6��.����6

Erdos, P., & Renyi, A. (����). On random graphs. Publicationes Mathematicae Debrecen, 6,���–���.

Fava, G. A., & Tossani, E. (����). Prodromal stage of major depression. Early Intervention inPsychiatry, �(�), �–�8.

Ferguson, T. S. (���6). A Course in Large Sample Theory. Taylor & Francis.Fiocco, M., & van Zwet, W. (����). Maximum likelihood estimation for the contact process.

Lecture Notes-Monograph Series, ���–��8.Fiocco,M., & vanZwet,W. R. (����). Parameter Estimation for the Supercritical Contact Process.

Bernoulli, �(6), ����–����.Fiocco, M., & van Zwet, W. R. (���6). Maximum likelihood for the fully observed contact process.

Journal of Computational and Applied Mathematics, �86(�), ���–���.Flay, B. R. (���8). Catastrophe theory in social psychology: Some applications to attitudes and

���

Page 16: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

social behavior. Behavioral Science, ��(�), ���–���.Foa, E. B., & Kozak, M. J. (��86). Emotional processing of fear: Exposure to corrective informa-

tion. Psychological Bulletin, ��, ��-��.Fort, H., Mazzeo, N., Scheffer, M., & Nes, E. v. (����). Catastrophic shifts in ecosystems: spa-

tial early warnings and management procedures (Inspired in the physics of phase tran-sitions). Journal of Physics: Conference Series, ��6(�), ������. doi: ��.��88/����-6��6/��6/�/������

Foygel, R., & Drton, M. (����). Extended Bayesian Information Criteria for Gaussian GraphicalModels. Adv. Neural Inf. Process. Syst., ��, ����–���8.

Foygel, R., & Drton, M. (����). Bayesian model choice and information criteria in sparse gener-alized linear models. arXiv preprint arXiv:����.�6��.

Foygel, R., & Drton,M. (����). High-dimensional Isingmodel selectionwith Bayesian informationcriteria. arXiv preprint arXiv:����.����.

Freeman, L. C. (����). Centrality in Social Networks Conceptual Clari�cation. Social Networks,�, ���–���.

Frewen, P. A., Allen, S. L., Lanius, R. A., & Neufeld, R. W. J. (����). Perceived causal relations:novel methodology for assessing client attributions about causal associations betweenvariables including symptoms and functional impairment. Assessment, ��(�), �8�–���.

Frewen, P. A., Schmittmann, V. D., Bringmann, L., & Borsboom, D. (����). Perceived causalrelations between anxiety, posttraumatic stress and depression: extension to moderation,mediation, and network analysis. European Journal of Psychotraumatology, �. doi: ��.����/ejpt.v�i�.��6�6

Fried, E. (����). Problematic assumptions have slowed down depression research: why symp-toms, not syndromes are the way forward. Frontiers in psychology, 6.

Fried, E., Bockting, C., Arjadi, R., Borsboom, D., Amshoff, M., Cramer, A., . . . Stroebe, M. (����).From loss to loneliness: The relationship between bereavement and depressive symp-toms. Journal of Abnormal Psychology, ���(�), ��6–�6�.

Fried, E., Boschloo, L., Van Borkulo, C. D., Schoevers, R. A., Romeijn, J.-W., Wichers, M., . . . Bors-boom, D. (����). Commentary: “Consistent superiority of selective serotonin reuptakeinhibitors over placebo in reducing depressed mood in patients with major depression”.Frontiers in Psychiatry, 6(���). doi: ��.��8�/fpsyt.����.�����

Fried, E., & Cramer, A. (in press). Moving forward: challenges and directions for psychopatho-logical network theory and methodology. Behavioral and Brain Sciences.

Fried, E., Epskamp, S., Nesse, R.M., Tuerlinckx, F., & Borsboom, D. (���6). What are ’good’ depres-sion symptoms? Comparing the centrality of DSM and non-DSM symptoms of depressionin a network analysis. Journal of Affective Disorders, �8�, ���–���.

Fried, E., Nesse, R., Zivin, K., Guille, C., & Sen, S. (����). Depression is more than the sum scoreof its parts: individual DSM symptoms have different risk factors. Psychological medicine,

��6

Page 17: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

��(��), ��6�–���6.Fried, E., & Nesse, R. M. (����). The Impact of Individual Depressive Symptoms on Impairment

of Psychosocial Functioning. PLOS ONE, �(�). doi: ��.����/journal.pone.�������Fried, E., & Nesse, R. M. (����a). Depression is not a consistent syndrome: An investigation of

unique symptom patterns in the STAR*D study. Journal of Affective Disorders, ���, �6–���.

Fried, E., & Nesse, R. M. (����b). Depression sum-scores don’t add up: why analyzing speci�cdepression symptoms is essential. BMC medicine, ��(�), ��.

Fried, E., Tuerlinckx, F., & Borsboom, D. (����). Mental health: More than neurobiology. Nature,��8(����), ��8–��8.

Fried, E., Van Borkulo, C. D., Cramer, A., Boschloo, L., Schoevers, R. A., & Borsboom, D. (���6).Mental disorders as networks of problems: a review of recent insights. Social Psychiatryand Psychiatric Epidemiology, ��(�), �–��.

Friedman, J., Hastie, T., & Tibshirani, R. (���8). Sparse inverse covariance estimation with thegraphical lasso. Biostatistics, �(�), ���–���.

Friedman, J., Hastie, T., & Tibshirani, R. (����). Regularization paths for generalized linear mod-els via coordinate descent. Journal of Statistical Software, ��(�), �.

Fruchterman, T. M., & Reingold, E. M. (����). Graph drawing by force-directed placement. Soft-ware: Practice and Experience, ��(��), ����–��6�.

Garmezy, N. (��8�). Stress, competence, and development: Continuities in the study ofschizophrenic adults, children vulnerable to psychopathology, and the search for stress-resistant children. Journal of Orthopsychiatry, ��(�), ���–���.

Gates, K. M., &Molenaar, P. C. M. (����). Group search algorithm recovers effective connectivitymaps for individuals in homogeneous and heterogeneous samples. NeuroImage, 6�(�),���–���.

Geraghty, A.W.,Muñoz, R. F., Yardley, L., Mc Sharry, J., Little, P., &Moore,M. (���6). Developing anUnguided Internet-Delivered Intervention for Emotional Distress in Primary Care Patients:Applying Common Factor and Person-Based Approaches. JMIR Mental Health, �(�). doi:��.���6/mental.�8��

Gilmore, R. (����). Catastrophe Theory for Scientists and Engineers. Courier Corporation.Goekoop, R., & Goekoop, J. G. (����). A Network View on Psychiatric Disorders: Network Clus-

ters of Symptoms as Elementary Syndromes of Psychopathology. PLOS ONE, �(��). doi:��.����/journal.pone.�������

Goldberg, D., & Fawcett, J. (����). The importance of anxiety in both major depression andbipolar disorder. Depression and anxiety, ��(6), ���–��8.

Goldbeter, A. (����). A model for the dynamics of bipolar disorders. Progress in Biophysics andMolecular Biology, ���(�), ���–���.

Good, P. I. (���6). Permutation, parametric, and bootstrap tests of hypotheses. Springer Science

���

Page 18: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

& Business Media.Gorban, A. N., Smirnova, E. V., & Tyukina, T. A. (����). Correlations, Risk and Crisis: FromPhysiol-

ogy to Finance. Physica A: Statistical Mechanics and its Applications, �8�(�6), ����–����.Gorban, A. N., Tyukina, T. A., Smirnova, E. V., & Pokidysheva, L. I. (���6). Evolution of adapta-

tion mechanisms: Adaptation energy, stress, and oscillating death. Journal of TheoreticalBiology, ���, ���–���.

Grasman, R. P. P. P., van der Maas, H. L. J., & Wagenmakers, E. M. (����). Fitting the cuspcatastrophe in R: a cusp-package primer. Journal of Statistical Software, ��(8), �–�8.

Greden, J. F. (����). The burden of recurrent depression: Causes, consequences, and futureprospects. Journal of Clinical Psychiatry, 6�, �-�.

Grimmett, G. (����). Probability on graphs: random processes on graphs and lattices (Vol. �).Cambridge University Press.

Haig, B. D., Palij, M., Palij, M., & Haig, D. (����). Investigating the psychological world. Cambridge,MA: MIT Press.

Hamaker, E. L. (����). Why researchers should think “within-person”: A paradigmatic rationale. InHandbook of ResearchMethods for Studying Daily Life (pp. ��–6�). NewYork, NY: Guilford.

Hammen, C. L., & Peters, S. D. (���8). Interpersonal consequences of depression: Responses tomen andwomen enacting a depressed role. Journal of Abnormal Psychology, 8�, ���-���.

Harris, T. E. (����). Contact interactions on a lattice. The Annals of Probability, �6�–�88.Harris, T. O., Borsanyi, S., Messari, S., Stanford, K., Brown, G.W., Cleary, S. E., . . . Herbert, J. (����).

Morning cortisol as a risk factor for subsequentmajor depressive disorder in adult women.British Journal of Psychiatry, ���, ���-���.

Hartmann, J. A., Wichers, M., Menne-Lothmann, C., Kramer, I., Viechtbauer, W., Peeters, F., . . .Simons, C. J. P. (����). Experience Sampling-Based Personalized Feedback and PositiveAffect: A Randomized Controlled Trial in Depressed Patients. PLOS ONE, ��(6), e���8���.

Haslbeck, J. M. B., & Waldorp, L. J. (����). MGM: Structure Estimation for Time-Varying MixedGraphical Models in high-dimensional Data. arXiv:����.�68��.

Hastings, W. K. (����). Monte Carlo sampling methods using Markov chains and their applica-tions. Biometrika, ��(�), ��–���.

Hawton, K., Casañas i Comabella, C., Haw, C., & Saunders, K. (����). Risk factors for suicidein individuals with depression: A systematic review. Journal of Affective Disorders, ���(�),��–�8.

Hayes, A. M., Yasinski, C., Ben Barnes, J., & Bockting, C. L. H. (����). Network destabilization andtransition in depression: New methods for studying the dynamics of therapeutic change.Clinical Psychology Review, ��, ��–��.

Hazen, E. P., Reichert, E. L., Piacentini, J. C., Miguel, E. C., do Rosario, M. C. a., Pauls, D., & Geller,D. A. (���8). Case series: Sensory intolerance as a primary symptom of pediatric OCD.Annals of Clinical Psychiatry: Of�cial Journal of the American Academy of Clinical Psychia-

��8

Page 19: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

trists, ��(�), ���–���.Heeren, A., & McNally, R. J. (���6). An integrative network approach to social anxiety disorder:

The complex dynamic interplay among attentional bias for threat, attentional control, andsymptoms. Journal of Anxiety Disorders, ��, ��–���.

Hemmeter, U.-M., Hemmeter-Spernal, J., & Krieg, J.-C. (����). Sleep deprivation in depression.Expert Review of Neurotherapeutics, ��(�), ����–����.

Hetrick, S. E., Parker, A. G., Hickie, I. B., Purcell, R., Yung, A. R., & McGorry, P. D. (���8). EarlyIdenti�cation and Intervention in Depressive Disorders: Towards a Clinical Staging Model.Psychotherapy and Psychosomatics, ��(�), �6�–���.

Hintze, J. L., &Nelson, R. D. (���8). Violin plots: a box plot-density trace synergism. TheAmericanStatistician, ��(�), �8�–�8�.

Hollon, S. D., Jarrett, R. B., Nierenberg, A. A., Thase, M. E., Trivedi, M., & John, A. (����). Psy-chotherapy and Medication in the Treatment of Adult and Geriatric Depression: WhichMonotherapy or Combined Treatment? The Journal of Clinical Psychiatry, 66(�), ���–�68.

Holm, S. (����). A simple sequentially rejective multiple test procedure. Scandinavian Journalof Statistics, 6(�), 6�–��.

Holtzheimer, P. E., &Mayberg, H. S. (����). Stuck in a rut: rethinking depression and its treatment.Trends in Neurosciences, ��(�), �–�.

Hoorelbeke, K., Marchetti, I., De Schryver, M., & Koster, E. H. W. (���6). The interplay betweencognitive risk and resilience factors in remitted depression: A network analysis. Journalof Affective Disorders, ���, �6–���.

Huber, M. T., Braun, H. A., & Krieg, J. C. (����). Consequences of deterministic and randomdynamics for the course of affective disorders. Biological Psychiatry, �6(�), ��6–�6�.

Insel, T., Cuthbert, B., Garvey, M., Heinssen, R., Pine, D. S., Quinn, K., . . . Wang, P. (����). Researchdomain criteria (RDoC): toward a new classi�cation framework for research on mentaldisorders. American Journal of Psychiatry, �6�(�), ��8–���.

Insel, T., & Cuthbert, B. N. (����). Brain disorders? Precisely. Science, ��8(6���), ���–���.Ising, E. (����). Beitrag zur theorie des ferromagnetismus. Zeitschrift für Physik A Hadrons and

Nuclei, ��(�), ���–��8.Isvoranu, A.-M., Borsboom, D., Os, J. v., & Guloksuz, S. (���6). A Network Approach to Environ-

mental Impact in Psychotic Disorder: Brief Theoretical Framework. Schizophrenia Bulletin,��(�), 8��–8��.

Isvoranu, A.-M., Van Borkulo, C. D., Boyette, L.-L., Wigman, J. T. W., Vinkers, C. H., Borsboom,D., & Group Investigators. (���6). A Network Approach to Psychosis: Pathways BetweenChildhood Trauma and Psychotic Symptoms. Schizophrenia Bulletin, ��(�), �8�–��6.

Ivarsson, T., & Melin, K. (���8). Autism spectrum traits in children and adolescents withobsessive-compulsive disorder (OCD). Journal of Anxiety Disorders, ��(6), �6�–��8. doi:��.���6/j.janxdis.����.��.���

���

Page 20: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

Jacobs, N., Kenis, G., Peeters, F., Derom, C., Vlietinck, R., & Os, J. v. (���6). Stress-RelatedNegative Affectivity and Genetically Altered Serotonin Transporter Function: Evidence ofSynergism in Shaping Risk of Depression. Archives of General Psychiatry, 6�(�), �8�–��6.

Jardine, N., & van Rijsbergen, C. J. (����). The use of hierarchic clustering in information retrieval.Information Storage and Retrieval, �(�), ���–���.

Javanmard, A., & Montanari, A. (����). Con�dence intervals and hypothesis testing for high-dimensional regression (Tech. Rep.). arXiv:���6.���.

Kalisch, M., & Bühlmann, P. (����). Estimating High-Dimensional Directed Acyclic Graphs withthe PC-Algorithm. Journal of Machine Learning Research, 8, 6��–6�6.

Kalisch, M., & Bühlmann, P. (���8). Robusti�cation of the PC-Algorithm for Directed AcyclicGraphs. Journal of Computational and Graphical Statistics, ��(�), ���–�8�.

Kalisch, M., Mächler, M., Colombo, D., Maathuis, M. H., & Bühlmann, P. (����). Causal inferenceusing graphical models with the R package pcalg. Journal of Statistical Software, ��(��),�–�6.

Kamphuis, J. H., & Telch, M. J. (����). Effects of distraction and guided threat reappraisal onfear reduction during exposure-based treatments for speci�c fears. Behaviour Researchand Therapy, �8(��), ��6�–��8�.

Keeling, M., & Eames, K. T. (����). Networks and epidemicmodels. Journal of The Royal SocietyInterface, �(�), ���–���.

Keeling, M., & Rohani, P. (����). Modeling infectious diseases in humans and animals. PrincetonUniversity Press.

Keller, M. B. (����). Past, present, and future directions for de�ning optimal treatment outcomein depression: Remission and beyond. JAMA, �8�(��), ����–��6�.

Keller, M. C., Neale, M. C., & Kendler, K. S. (����). Association of different adverse life events withdistinct patterns of depressive symptoms. The American Journal of Psychiatry, �6�(��),����–����.

Keller, M. C., & Nesse, R. M. (����). Is low mood an adaptation? Evidence for subtypes withsymptoms that match precipitants. Journal of Affective Disorders, 86(�), ��–��.

Keller, M. C., & Nesse, R. M. (���6). The evolutionary signi�cance of depressive symptoms.Journal of Personality and Social Psychology, ��(�), ��6–���.

Kelso, J. A. S. (����). Multistability and metastability: understanding dynamic coordination inthe brain. Philosophical Transitions of the Royal Society B, �6�(����), ��6–��8.

Kendler, K. S., Karkowski, L. M., & Prescott, C. A. (����). Causal Relationship Between StressfulLife Events and the Onset of Major Depression. American Journal of Psychiatry, ��6(6),8��–8��.

Kendler, K. S., & Prescott, C. A. (���6). Genes, environment, and psychopathology: Understandingthe causes of psychiatric and substance use disorders. Guilford Press.

Kendler, K. S., Zachar, P., & Craver, C. (����). What kinds of things are psychiatric disorders?

���

Page 21: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

Psychological medicine, ��(6), ����–����.Kessler, R. C. (����). The National Comorbidity Survey of the United States. International Review

of Psychiatry, 6(�), �6�–��6.Kessler, R. C. (����). Epidemiology of women and depression. Journal of Affective Disorders,

��(�), �–��.Kessler, R. C., Aguilar-Gaxiola, S., Alonso, J., Chatterji, S., Lee, S., Ormel, J., . . . Wang, P. S. (����).

The global burden of mental disorders: An update from the WHO World Mental Health(WMH) Surveys. Epidemiologia e Psichiatria Sociale, �8(��), ��–��.

Kessler, R. C., Berglund, P., Chiu, W. T., Demler, O., Heeringa, S., Hiripi, E., . . . Zheng, H. (����).The US National Comorbidity Survey Replication (NCS-R): design and �eld procedures.International Journal of Methods in Psychiatric Research, ��(�), 6�–��.

Kessler, R. C., Chiu,W. T., Demler, O., &Walters, E. E. (����). Prevalence, severity, and comorbidityof ��-month DSM-IV disorders in the National Comorbidity Survey Replication. Archivesof general psychiatry, 6�(6), 6��–6��.

Kessler, R. C., & Magee, W. J. (����). Childhood adversities and adult depression: basic patternsof associations in a us national survey. Psychological Medicine, ��, 6��-6��.

Kessler, R. C., McGonagle, K. A., Zhao, S., Nelson, C. B., Hughes, M., Eshleman, S., . . . Kendler, K. S.(����). Lifetime and ��-month prevalence of dsm-iii-r psychiatric disorders in the unitedstates: Results from the national comorbidity survey. Archives of General Psychiatry, ��,8-��.

Kessler, R. C., Nelson, C. B., McGonagle, K. A., Liu, J., & others. (���6). Comorbidity of DSM-III-R major depressive disorder in the general population: Results from the US NationalComorbidity Survey. The British Journal of Psychiatry, ��, ��–��.

Khoury, B., Lecomte, T., Fortin, G., Masse, M., Therien, P., Bouchard, V., . . . Hofmann, S. G. (����).Mindfulness-based therapy: A comprehensive meta-analysis. Clinical Psychology Review,��(6), �6�–���.

Kievit, R. A., Davis, S. W., Grif�ths, J. D., Correia, M. M., Cam-CAN, & Henson, R. N. A. (���6).A watershed model of individual differences in �uid intelligence. bioRxiv, ����68. doi:��.����/����68

Kievit, R. A., Frankenhuis, W. E., Waldorp, L. J., & Borsboom, D. (����). Simpson’s paradox inpsychological science: a practical guide. Frontiers in Psychology, �. doi: ��.��8�/fpsyg.����.�����

Kim, N. S., & Ahn, W.-k. (����). Clinical psychologists’ theory-based representations of mentaldisorders predict their diagnostic reasoning and memory. Journal of Experimental Psy-chology: General, ���(�), ���–��6.

Kindermann, R., & Snell, J. L. (��8�). Markov random �elds and their applications (Vol. �). Amer-ican Mathematical Society Providence, RI.

Kitsak, M., Gallos, L. K., Havlin, S., Liljeros, F., Muchnik, L., Stanley, H. E., & Makse, H. A. (����).

���

Page 22: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

Identi�cation of in�uential spreaders in complex networks. Nature Physics, 6(��), 888–8��.

Klainin-Yobas, P., Cho, M. A. A., & Creedy, D. (����). Ef�cacy of mindfulness-based interventionson depressive symptoms among people with mental disorders: A meta-analysis. Interna-tional Journal of Nursing Studies, ��(�), ���–���.

Klippel, A., Viechtbauer, W., Reininghaus, U., Wigman, J., van Borkulo, C., Myin-Germeys, I., &Wichers, M. (����). The cascade of stress: A network approach to explore differentialdynamics in populations varying in risk for psychosis. Schizophrenia Bulletin. doi: ��.����/schbul/sbx���

Koenders, M. A., Kleijn, R. d., Giltay, E. J., Elzinga, B. M., Spinhoven, P., & Spijker, A. T. (����).A Network Approach to Bipolar Symptomatology in Patients with Different Course Types.PLOS ONE, ��(��), e�������.

Kolaczyk, E. (����). Statistical analysis of network data: methods and models. Springer.Koller, D., & Friedman, N. (����). Probabilistic graphical models: principles and techniques. MIT

press.Kossakowski, J. J., Epskamp, S., Kieffer, J. M., Van Borkulo, C. D., Rhemtulla, M., & Borsboom, D.

(���6). The application of a network approach to Health-Related Quality of Life (HRQoL):introducing a new method for assessing HRQoL in healthy adults and cancer patients.Quality of Life Research: An International Journal of Quality of Life Aspects of Treatment,Care and Rehabilitation, ��(�), �8�–���.

Kramer, I., Simons, C. J., Hartmann, J. A., Menne-Lothmann, C., Viechtbauer, W., Peeters, F., . . .Wichers, M. (����). A therapeutic application of the experience sampling method in thetreatment of depression: a randomized controlled trial. World Psychiatry, ��(�), 68–��.

Krieke, L. V. D., Jeronimus, B. F., Blaauw, F. J., Wanders, R. B., Emerencia, A. C., Schenk, H. M.,. . . Jonge, P. D. (���6). HowNutsAreTheDutch (HoeGekIsNL): A crowdsourcing study ofmental symptoms and strengths. International Journal ofMethods in Psychiatric Research,��(�), ���–���.

Kroeze, R., Van Veen, D., Servaas, M., Bastiaansen, J., Oude Voshaar, R., Borsboom, D., & Riese,H. (���6). Personalized feedback on symptom dynamics of psychopathology: a proof-of-principle study.(Manuscript submitted for publication)

Kuppens, P., Allen, N. B., & Sheeber, L. (����). Emotional inertia and psychological maladjust-ment. Psychological science, ��(�), �8�–���.

Kuppens, P., Sheeber, L. B., Yap, M. B. H., Whittle, S., Simmons, J. G., & Allen, N. B. (����). Emo-tional inertia prospectively predicts the onset of depressive disorder in adolescence. Emo-tion (Washington, D.C.), ��(�), �8�–�8�.

Lamers, F., Vogelzangs, N.,Merikangas, K. R., de Jonge, P., Beekman, A. T. F., & Penninx, B.W. J. H.(����). Evidence for a differential role of HPA-axis function, in�ammation and metabolic

���

Page 23: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

syndrome in melancholic versus atypical depression. Molecular Psychiatry, �8(6), 6��–6��.

Larson, R., & Csikszentmihalyi, M. (��8�). The experience sampling method. New Directions forMethodology of Social & Behavioral Science.

Lauritzen, S. L. (���6). Graphical Models. Clarendon Press.Leemput, I. A. v. d., Wichers, M., Cramer, A., Borsboom, D., Tuerlinckx, F., Kuppens, P., . . . Schef-

fer, M. (����). Critical slowing down as early warning for the onset and termination ofdepression. Proceedings of the National Academy of Sciences, ���(�), 8�–��.

Leskelä, U. S., Melartin, T. K., Lestelä-Mielonen, P. S., Rytsälä, H. J., Petteri, T., Heikkinen, M. E., &Isometsä, E. T. (����). Life Events, Social Support, and Onset ofMajor Depressive Episodein Finnish Patients. Journal of Nervous and Mental Disease, ���(�), ���–�8�.

Liggett, T. (����). Interacting particle systems (Vol. ��6). Springer.Liu, Y. Y., Slotine, J. J., & Barabási, A.-L. (����). Controllability of complex networks. Nature,

���(���6), �6�–���.Loh, P. L., & Wainwright, M. J. (����). Structure estimation for discrete graphical models: Gener-

alized covariancematrices and their inverses. The Annals of Statistics, ��(6), ����–����.Lopez, A. D., Mathers, C. D., Ezzati, M., Jamison, D. T., & Murray, C. J. L. (���6). Global and

regional burden of disease and risk factors, ����: systematic analysis of population healthdata. The Lancet, �6�, ����-����.

Lord, F., Novick, M., & Birnbaum, A. (��68). Statistical theories of mental test scores. Oxford,England: Addison-Wesley.

Luthar, S. S., Cicchetti, D., & Becker, B. (����). The Construct of Resilience: A Critical Evaluationand Guidelines for Future Work. Child Development, ��(�), ���–�6�.

Lütkepohl, H. (����). New Introduction to Multiple Time Series Analysis. Springer Science &Business Media.

Lux, V., & Kendler, K. (����). Deconstructing major depression: a validation study of the DSM-IVsymptomatic criteria. Psychological medicine, ��(��), �6��–�6��.

Maathuis, M., & Nandy, P. (���6). A review of some recent advances in causal inference. InP. Bühlmann, P. Drineas, M. Kane, & M. van der Laan (Eds.), Handbook of big data (p. �8�-���). Boca Raton, FL: Chapman and Hall/CRC.

Malki, K., Keers, R., Tosto, M. G., Lourdusamy, A., Carboni, L., Domenici, E., . . . Schalkwyk, L. C.(����). The endogenous and reactive depression subtypes revisited: integrative animaland human studies implicate multiple distinct molecular mechanisms underlying majordepressive disorder. BMC Medicine, ��, ��.

Marsman, M., Maris, G., Bechger, T., & Glas, C. (����). Bayesian inference for low-rank Isingnetworks. Scienti�c Reports, �, ����. doi: ��.���8/srep�����

Mathers, C., Fat, D. M., & Boerma, J. T. (���8). The global burden of disease: ���� update. WorldHealth Organization.

���

Page 24: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

Mathers, C. D., & Loncar, D. (���6). Projections of global mortality and burden of disease from���� to ����. PLOS Medicine, �(��), e���.

McCulloch, C. E., & Neuhaus, J. M. (����). Generalized Linear Mixed Models. In Encyclopediaof Biostatistics. John Wiley & Sons, Ltd.

McGorry, P. D. (����). Issues for DSM-V: Clinical Staging: A Heuristic Pathway to Valid Nosologyand Safer, More Effective Treatment in Psychiatry. American Journal of Psychiatry, �6�(6),8��–86�.

McGorry, P. D., Hickie, I. B., Yung, A. R., Pantelis, C., & Jackson, H. J. (���6). Clinical Staging ofPsychiatric Disorders: A Heuristic Framework for Choosing Earlier, Safer and more Effec-tive Interventions. Australian & New Zealand Journal of Psychiatry, ��(8), 6�6–6��.

McGuf�n, P., Katz, R., & Bebbington, P. (��88). The camberwell collaborative depression studyiii. depression and adversity in the relatives of probands. British Journal of Psychiatry, ���,���-�8�.

McNally, R. J., Robinaugh, D. J., Wu, G. W. Y., Wang, L., Deserno, M. K., & Borsboom, D. (����).Mental Disorders as Causal Systems A Network Approach to Posttraumatic Stress Disor-der. Clinical Psychological Science, �(6), 8�6–8��.

Meehl, P. E. (����). Factors and Taxa, Traits and Types, Differences of Degree and Differencesin Kind. Journal of Personality, 6�(�), ���–���.

Meek, C. (����). Strong Completeness and Faithfulness in Bayesian Networks. In Proceed-ings of the Eleventh Conference on Uncertainty in Arti�cial Intelligence (pp. ���–��8). SanFrancisco, CA, USA: Morgan Kaufmann Publishers Inc.

Meinshausen, N., & Bühlmann, P. (���6). High-dimensional graphs and variable selection withthe lasso. The Annals of Statistics, ��(�), ���6–��6�.

Mello, M. F. d., Mari, J. d. J., Bacaltchuk, J., Verdeli, H., & Neugebauer, R. (����). A systematic re-view of research �ndings on the ef�cacy of interpersonal therapy for depressive disorders.European Archives of Psychiatry and Clinical Neuroscience, ���(�), ��–8�.

Middeldorp, C. M., Cath, D. C., Beem, A. L., Willemsen, G., & Boomsma, D. I. (���8). Lifeevents, anxious depression and personality: a prospective and genetic study. Psychologi-cal Medicine, �8(��), ����–��6�.

Molenaar, P. C. M. (����). A Manifesto on Psychology as Idiographic Science: Bringing thePerson Back Into Scienti�c Psychology, This Time Forever. Measurement: InterdisciplinaryResearch and Perspectives, �(�), ���–��8.

Monroe, S. M., & Simons, A. D. (����). Diathesis-stress theories in the context of life stressresearch: implications for the depressive disorders. Psychological Bulletin, ���, ��6-���.

Munafò, M. R., Durrant, C., Lewis, G., & Flint, J. (����). Gene £ Environment Interactions at theSerotonin Transporter Locus. Biological Psychiatry, 6�(�), ���–���.

Murray, I. (����). Advances in Markov chain Monte Carlo methods (PhD thesis). Gatsby Com-putational Neuroscience Unit, University College London.

���

Page 25: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

Musmeci, N., Aste, T., & Di Matteo, T. (����). Risk diversi�cation: a study of persistence with a�ltered correlation-network approach. arXiv:����.�6�� [q-�n]. (arXiv: ����.�6��)

Myin-Germeys, I., Oorschot, M., Collip, D., Lataster, J., Delespaul, P., & van Os, J. (����). Experi-ence sampling research in psychopathology: opening the black box of daily life. Psycho-logical Medicine, ��(��), ����–����.

Nagel, E. (����). TheStructure of Science: Problems in the Logic of Scienti�c Explanation. HackettPublishing Company.

Nelder, J. A., & Baker, R. J. (����). Generalized Linear Models. In Encyclopedia of StatisticalSciences. John Wiley & Sons, Inc. Retrieved ����-��-��, from http://onlinelibrary

.wiley.com/doi/10.1002/0471667196.ess0866.pub2/abstract

Newman, M. (����). Scienti�c collaboration networks. II. Shortest paths, weighted networks,and centrality. Physical Review E, 6�(�), ��6���.

Newman,M. (����). Spread of epidemic disease on networks. Physical Review E, 66(�), ��6��8.Newman, M. (����). Networks: an introduction. Oxford University Press, Inc.Nock,M. K., Hwang, I., Sampson, N. A., & Kessler, R. C. (����). Mental disorders, comorbidity and

suicidal behavior: Results from the National Comorbidity Survey Replication. MolecularPsychiatry, ��(8), 868–8�6.

Nolen-Hoeksema, S. (��8�). Sex differences in unipolar depression: evidence and theory. Psy-chological bulletin, ���(�), ���.

Norris, J. R. (����). Markov Chains. Cambridge University Press.Oorschot, M., Lataster, T., Thewissen, V., Wichers, M., & Myin-Germeys, I. (����). Mobile Assess-

ment in Schizophrenia: A Data-Driven Momentary Approach. Schizophrenia Bulletin, �8(�),���–���.

Oppenheim, P., & Putnam, H. (����). Unity of science as a working hypothesis. In The philosophyof science (pp. ���–��8). Cambridge, MA: MIT Press.

Opsahl, T. (����). Triadic closure in two-mode networks: Rede�ning the global and local clus-tering coef�cients. Social Networks, ��(�), ���–�6�.

Opsahl, T., Agneessens, F., & Skvoretz, J. (����). Node centrality in weighted networks: General-izing degree and shortest paths. Social Networks, ��(�), ���–���.

Orman, G. K., & Labatut, V. (����). A comparison of community detection algorithms on arti�cialnetworks. In Discovery Science (pp. ���–��6). Springer.

Østergaard, S. D., Jensen, S. O. W., & Bech, P. (����). The heterogeneity of the depressive syn-drome: when numbers get serious. Acta Psychiatrica Scandinavica, ���(6), ���–��6.

Parker, G., Paterson, A., & Hadzi-Pavlovic, D. (����). Cleaving depressive diseases from depres-sive disorders and non-clinical states. Acta Psychiatrica Scandinavica, ���(6), ��6–���.

Patel, M. J., Andreescu, C., Price, J. C., Edelman, K. L., Reynolds, C. F., & Aizenstein, H. J. (����).Machine learning approaches for integrating clinical and imaging features in late-life de-pression classi�cation and response prediction. International Journal of Geriatric Psychi-

���

Page 26: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

atry, ��(��), ���6–��6�.Pe, M. L., Kircanski, K., Thompson, R. J., Bringmann, L., Tuerlinckx, F., Mestdagh, M., . . . Gotlib,

I. H. (����). Emotion-Network Density inMajor Depressive Disorder. Clinical PsychologicalScience, �(�), ���–���.

Pearl, J. (����). Causality: Models, Reasoning, and Inference. New York, NY, USA: CambridgeUniversity Press.

Pearl, J. (����). Causal inference in statistics: An overview. Statistics Surveys, �, �6–��6.Pearl, J., & Verma, T. (����). A theory of inferred causation. Morgan Kaufmann San Mateo, CA.Penninx, B.W., Beekman, A. T., Smit, J. H., Zitman, F. G., Nolen,W. A., Spinhoven, P., . . . Assendelft,

W. J. (���8). The netherlands study of depression and anxiety (NESDA): Rationale, objec-tives and methods. International Journal of Methods in Psychiatric Research, ��(�), ���–���.

Penninx, B. W., Nolen, W. A., Lamers, F., Zitman, F. G., Smit, J. H., Spinhoven, P., . . . others (����).Two-year course of depressive and anxiety disorders: Results from the Netherlands Studyof Depression and Anxiety (NESDA). Journal of affective disorders, ���(�), �6–8�.

Persons, J. B. (��86). The advantages of studying psychological phenomena rather than psy-chiatric diagnoses. The American Psychologist, ��(��), ����–��6�.

Pons, P., & Latapy, M. (���6). Computing communities in large networks using random walks.Journal of Graph Algorithms and Applications, ��(�), ���–��8.

Pötscher, B. M., & Leeb, H. (����). On the distribution of penalized maximum likelihood es-timators: The LASSO, SCAD, and thresholding. Journal of Multivariate Analysis, ���(�),��6�–��8�.

Prescott, C. A., Aggen, S. H., & Kendler, K. S. (����). Sex-speci�c genetic in�uences on the co-morbidity of alcoholism and major depression in a population-based sample of US twins.Archives of General Psychiatry, ��(8), 8��.

R Development Core Team. (����). R: A Language and Environment for Statistical Computing.Vienna, Austria: R Foundation for Statistical Computing. Retrieved from http://www.R

-project.org/ (ISBN �-������-��-�)Raskutti, G., Wainwright, M. J., & Yu, B. (����). Restricted Eigenvalue Properties for Correlated

Gaussian Designs. J. Mach. Learn. Res., ��, ����–����.Ravikumar, P., Wainwright, M. J., & Lafferty, J. D. (����). High-dimensional Isingmodel selection

using l�-regularized logistic regression. The Annals of Statistics, �8(�), ��8�–����.Ravikumar, P., Wainwright, M. J., Raskutti, G., Yu, B., & others. (����). High-dimensional covari-

ance estimation by minimizing l�-penalized log-determinant divergence. Electronic Jour-nal of Statistics, �, ���–�8�.

Rhemtulla, M., Fried, E., Aggen, S. H., Tuerlinckx, F., Kendler, K. S., & Borsboom, D. (���6). Networkanalysis of substance abuse and dependence symptoms. Drug and Alcohol Dependence,�6�, ���–���.

��6

Page 27: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

Richardson, T., & Spirtes, P. (����). Ancestral Graph Markov Models. The Annals of Statistics,��(�), �6�–����.

Robinaugh, D. J., LeBlanc, N. J., Vuletich, H. A., & McNally, R. J. (����). Network analysis of per-sistent complex bereavement disorder in conjugally bereaved adults. Journal of AbnormalPsychology, ���(�), ���–���.

Robinaugh, D. J., & McNally, R. J. (����). Trauma centrality and PTSD symptom severity in adultsurvivors of childhood sexual abuse. Journal of Traumatic Stress, ��(�), �8�–�86.

Robins, C. J., & Block, P. (��88). Personal vulnerability, life events, and depressive symptoms:a test of a speci�c interactional model. Journal of Personality and Social Psychology, ��,8��-8��.

Robinson, W. S. (����). Ecological Correlations and the Behavior of Individuals. AmericanSociological Review, ��(�), ���–���.

Rohde, P., Seeley, J. R., Kaufman, N. K., Clarke, G. N., & Stice, E. (���6). Predicting Time to Re-covery Among Depressed Adolescents Treated in Two Psychosocial Group Interventions.Journal of consulting and clinical psychology, ��(�), 8�–88.

Rosmalen, J. G., Wenting, A. M., Roest, A. M., de Jonge, P., & Bos, E. H. (����). Revealing CausalHeterogeneity Using Time Series Analysis of Ambulatory Assessments: Application to theAssociation Between Depression and Physical Activity After Myocardial Infarction. Psy-chosomatic Medicine, ��(�), ���–�86.

Rothbaum, B. O., & Schwartz, A. C. (����). Exposure therapy for posttraumatic stress disorder.American Journal of Psychotherapy, �6(�), ��–��.

Rothman, A. J., Levina, E., & Zhu, J. (����). Sparse multivariate regression with covarianceestimation. Journal of Computational and Graphical Statistics, ��(�), ���–�6�.

Rue, H., & Held, L. (����). Gaussian Markov random �elds: theory and applications. CRC Press.Rush, A., Gullion, C. M., Basco, M. R., Jarrett, R. B., Trivedi, M. H., & others. (���6). The inventory

of depressive symptomatology (IDS): Psychometric properties. Psychological Medicine,�6(�), ���–�86.

Ruzzano, L., Borsboom, D., & Geurts, H. M. (����). Repetitive behaviors in autism and obsessive-compulsive disorder: New perspectives from a network analysis. Journal of Autism andDevelopmental Disorders, ��(�), ���–���. doi: ��.����/s��8��-���-����-�

Sani, G., Napoletano, F., Vöhringer, P. A., Sullivan, M., Simonetti, A., Koukopoulos, A., . . . Ghaemi,N. (����). Mixed depression: clinical features and predictors of its onset associated withantidepressant use. Psychotherapy and Psychosomatics, 8�(�), ���–���.

Santos, H., Fried, E., Asafu-Adjei, J., & Ruiz, R. J. (����). Network Structure of Perinatal Depres-sive Symptoms in Latinas: Relationship to Stress and Reproductive Biomarkers. Researchin Nursing & Health. doi: ��.����/nur.���8�

Schadt, E. E., & Björkegren, J. L. M. (����). NEW: Network-EnabledWisdom in Biology, Medicine,and Health Care. Science Translational Medicine, �(���), ���rv�–���rv�.

���

Page 28: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

Schäfer, J., & Strimmer, K. (����). A Shrinkage Approach to Large-Scale Covariance MatrixEstimation and Implications for Functional Genomics. Statistical Applications in Geneticsand Molecular Biology, �(�), ��.

Scheffer, M., Bascompte, J., Brock, W. A., Brovkin, V., Carpenter, S. R., Dakos, V., . . . Sugihara, G.(����). Early-warning signals for critical transitions. Nature, �6�(��6�), ��–��.

Schmittmann, V. D., Cramer, A., Waldorp, L. J., Epskamp, S., Kievit, R. A., & Borsboom, D. (����).Deconstructing the construct: A network perspective on psychological phenomena. NewIdeas in Psychology, ��(�), ��–��.

Schmittmann, V. D., Cramer, A. O. J., Waldorp, L. J., Epskamp, S., Kievit, R. A., & Borsboom, D.(����). Deconstructing the construct: A network perspective on psychological phenom-ena. New Ideas in Psychology, ��(�), ��–��.

Schoevers, R. A., Beekman, A. T. F., Deeg, D. J. H., Jonker, C., & Van Tilburg, W. (����). Co-morbidity and risk-patterns of depression, generalised anxiety disorder andmixed anxiety-depression in later life: results from the AMS study. International Journal of Geriatric Psy-chiatry, �8(��), ���–����.

Schoevers, R. A., Deeg, D., Van Tilburg, W., & Beekman, A. (����). Depression and generalizedanxiety disorder: co-occurrence and longitudinal patterns in elderly patients. The AmericanJournal of Geriatric Psychiatry, ��(�), ��–��.

Schuch, J. J. J., Roest, A. M., Nolen, W. A., Penninx, B. W. J. H., & de Jonge, P. (����). Gender dif-ferences in major depressive disorder: Results from the Netherlands study of depressionand anxiety. Journal of Affective Disorders, ��6, ��6–�6�.

Schuurman, N. K., Ferrer, E., de Boer-Sonnenschein,M., & Hamaker, E. L. (���6). How to comparecross-lagged associations in a multilevel autoregressive model. Psychological Methods,��(�), ��6–���.

Shumway, R. H., & Stoffer, D. S. (����). Time Series Analysis and Its Applications: With R Exam-ples. Springer Science & Business Media.

Singer, B. (��8�). Estimation of Nonstationary Markov Chains from Panel Data. SociologicalMethodology, ��, ���–���.

Speed, T., & Kiiveri, H. (��86). Gaussian Markov distributions over �nite graphs. The Annals ofStatistics, ��, ��8–���.

Spirtes, P., Glymour, C., & Scheines, R. (����). Causation, prediction, and search. Cambrigde,Massachusetts: MIT press.

Startz, R. (���8). Binomial autoregressive moving average models with an application to USrecessions. Journal of business & economic statistics, �6(�).

Stone, A. A., & Shiffman, S. (����). Ecological momentary assessment (EMA) in behavorialmedicine. Annals of Behavioral Medicine, �6(�), ���–���.

Strimmer, K. (���8). fdrtool: a versatile R package for estimating local and tail area-based falsediscovery rates. Bioinformatics, ��(��), ��6�–��6�.

��8

Page 29: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

Strogatz, S. H. (����). Nonlinear Dynamics and Chaos: With Applications to Physics, Biology,Chemistry, and Engineering. Westview Press.

Teasdale, J. D. (��8�). Negative thinking in depression: Cause, effect, or reciprocal relationship?Advances in Behaviour, Research and Therapy, �, �-��.

Thom, R. (��8�). Structural Stability and Morphogenesis. Addison-Wesley.Tibshirani, R. (���6). Regression shrinkage and selection via the lasso. Journal of the Royal

Statistical Society. Series B (Methodological), �8, �6�–�88.Tweed, D. L. (����). Depression-related impairment: estimating concurrent and lingering effects.

Psychological Medicine, ��(��), ���–�86.Van Bork, R., Van Borkulo, C. D., Waldorp, L. J., Cramer, A., & Borsboom, D. (n.d.). Network

models for clinical psychology. In The Stevens0 Handbook of Experimental Psychologyand Cognitive Neuroscience (Fourth Edition ed.).

Van Borkulo, C. D., Borsboom, D., Epskamp, S., Blanken, T. F., Boschloo, L., Schoevers, R. A., &Waldorp, L. J. (����). A newmethod for constructing networks from binary data. Scienti�cReports, �. doi: doi:��.���8/srep����8

Van Borkulo, C. D., Borsboom, D., Nivard, M., & Cramer, A. O. J. (����). Symptom spreadmodel. Retrieved from http://ccl.northwestern.edu/netlogo/models/community/

Vulnerability_to_Depression

Van Borkulo, C. D., Borsboom, D., & Schoevers, R. A. (���6). Group-level symptom networks indepression - reply. JAMA Psychiatry, ��(�), ���–���.

Van Borkulo, C. D., Boschloo, L., Borsboom, D., Penninx, B. W. J. H., Waldorp, L. J., & Schoevers,R. A. (����). Association of Symptom Network Structure With the Course of Depression.JAMA Psychiatry, ��(��), ����–���6.

Van Borkulo, C. D., Boschloo, L., Kossakowski, J., Tio, P., Schoevers, R. A., Borsboom, D., & Wal-dorp, L. J. (���6). Comparing network structures on three aspects: A permutation test.(Submitted for publication) doi: ��.�����/RG.�.�.�����.�8�6�

Van Borkulo, C. D., Epskamp, S., & Milner, A. (���6). NetworkComparisonTest. Re-trieved from https://cran.r-project.org/web/packages/NetworkComparisonTest/

NetworkComparisonTest.pdf (Version �.�.�)Van Borkulo, C. D., Epskamp, S., & Robitzsch. (���6). IsingFit: Fitting Ising Models Using

the ELasso Method. Retrieved ���6-��-��, from https://cran.r-project.org/web/

packages/IsingFit/index.html

Van Borkulo, C. D., Van Der Maas, H. L. J., Borsboom, D., & Cramer, A. (����). Vulnerability to de-pression. Retrieved from http://ccl.northwestern.edu/netlogo/models/community/

Vulnerability_to_Depression

Van Borkulo, C. D., Wichers, M., Boschloo, L., Epskamp, S., Schoevers, R. A., Kamphuis, J. H.,. . . Waldorp, L. J. (����). Supplement to “the contact process as a model for predictingnetwork dynamics of psychopathology”.

���

Page 30: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

(Manuscript submitted for publication)Van Borkulo, C. D., Wichers, M., Boschloo, L., Schoevers, R. A., Kamphuis, J. H., Borsboom, D., &

Waldorp, L. J. (n.d.). The contact process as a model for predicting network dynamics ofpsychopathology. (Manuscript submitted for publication)

Van de Geer, S., Bühlmann, P., Ritov, Y. A., & Dezeure, R. (����). On asymptotically optimalcon�dence regions and tests for high-dimensional models. The Annals of Statistics, ��(�),��66–����.

Van Der Maas, H. L. J., Dolan, C. V., Grasman, R. P. P. P., Wicherts, J. M., Huizenga, H. M., & Raij-makers, M. E. J. (���6). A dynamical model of general intelligence: The positive manifoldof intelligence by mutualism. Psychological Review, ���(�), 8��.

Van der Vaart, A. (���8). Asymptotic Statistics. New York: Cambridge University Press.Van Loo, H. M., De Jonge, P., Romeijn, J.-W., Kessler, R. C., & Schoevers, R. A. (����). Data-driven

subtypes of major depressive disorder: a systematic review. BMC medicine, ��(�), ��6.Van Nes, E. H., & Scheffer, M. (����). Implications of Spatial Heterogeneity for Catastrophic

Regime Shifts in Ecosystems. Ecology, 86(�), ����–�8��.van Nes, E. H., & Scheffer, M. (����). Slow recovery from perturbations as a generic indicator

of a nearby catastrophic shift. The American Naturalist, �6�(6), ��8–���.Vega-Dienstmaier, J. M. (����). Estructura de la sintomatología depresiva en una muestra de

mujeres con menos de un año postparto: Structure of the depressive symptomatology ina sample of women with less than � year postpartum. Revista de Neuro-Psiquiatría, �8(�),���–���.

Vespignani, A. (����). Modelling dynamical processes in complex socio-technical systems.Nature Physics, 8(�), ��–��.

Vogelzangs, N., Duivis, H. E., Beekman, A. T. F., Kluft, C., Neuteboom, J., Hoogendijk, W., . . . Pen-ninx, B. W. J. H. (����). Association of depressive disorders, depression characteristicsand antidepressant medication with in�ammation. Translational Psychiatry, �(�), e��. doi:��.���8/tp.����.8

Wainwright, M. J., & Jordan, M. I. (���8). Graphical models, exponential families, and variationalinference. Foundations and Trends in Machine Learning, �(�-�), �–���.

Wake�eld, J. C., & Schmitz, M. F. (����). Predictive validation of single-episode uncomplicateddepression as a benign subtype of unipolar major depression. Acta Psychiatrica Scandi-navica, ���(6), ���–���.

Waldorp, L. (����). Testing for graph differences using the desparsi�ed lasso in high-dimensional data.(Manuscript submitted for publication)

Wang, J., Fick, G., Adair, C., & Lai, D. (����). Gender speci�c correlates of stigma toward depres-sion in a Canadian general population sample. Journal of Affective Disorders, ���(�–�),��–��.

���

Page 31: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

Wasserman, S., & Faust, K. (����). Social Network Analysis: Methods and Applications. Cam-bridge University Press.

Watts, D. J., & Strogatz, S. H. (���8). Collective dynamics of small-world networks. Nature, ���,���–���.

Weisstein, W. (n.d.). Graph Diameter. From MathWorld–A Wolfram Web Resource. Retrievedfrom http://mathworld.wolfram.com/GraphDiameter.html

Whiteford, H. A., Degenhardt, L., Rehm, J., Baxter, A. J., Ferrari, A. J., Erskine, H. E., . . . Vos, T.(����). Global burden of disease attributable to mental and substance use disorders: �nd-ings from the Global Burden of Disease Study ����. The Lancet, �8�(����), ����–��86.

Wichers, M. (����). The dynamic nature of depression: a newmicro-level perspective of mentaldisorder that meets current challenges. Psychological Medicine, ��(��), ����–��6�.

Wichers, M., Geschwind, N., Jacobs, N., Kenis, G., Peeters, F., Derom, C., . . . Os, J. v. (����).Transition from stress sensitivity to a depressive state: longitudinal twin study. The BritishJournal of Psychiatry, ���(6), ��8–���.

Wichers, M., Groot, P. C., & Psychosystems, ESM Group, EWS Group. (���6). Critical SlowingDown as a Personalized Early Warning Signal for Depression. Psychotherapy and Psycho-somatics, 8�(�), ���–��6.

Wichers, M., Wigman, J. T. W., Bringmann, L., & De Jonge, P. (����). Mental disorders as net-works: some cautionary re�ections on a promising approach. Social Psychiatry and Psy-chiatric Epidemiology, ��(�), ���–���.

Wichers, M., Wigman, J. T. W., & Myin-Germeys, I. (����). Micro-Level Affect Dynamics in Psy-chopathology Viewed From Complex Dynamical System Theory. Emotion Review, �(�),�6�–�6�.

Wigman, J. T. W., Os, J. v., Thiery, E., Derom, C., Collip, D., Jacobs, N., & Wichers, M. (����).Psychiatric Diagnosis Revisited: Towards a System of Staging and Pro�ling CombiningNomothetic and Idiographic Parameters of Momentary Mental States. PLOS ONE, 8(�),e�����.

Wigman, J. T. W., van Os, J., Borsboom, D., Wardenaar, K. J., Epskamp, S., Klippel, A., . . . Wichers,M. (����). Exploring the underlying structure of mental disorders: cross-diagnostic differ-ences and similarities from a network perspective using both a top-down and a bottom-upapproach. Psychological Medicine, ��(��), ����–��8�.

Wigman, J. T. W., Vos, S. d., Wichers, M., Os, J. v., & Bartels-Velthuis, A. A. (���6). A Transdi-agnostic Network Approach to Psychosis. Schizophrenia Bulletin, sbw���. doi: ��.����/schbul/sbw���

Wild, B., Eichler, M., Friederich, H.-C., Hartmann, M., Zipfel, S., & Herzog, W. (����). A graphicalvector autoregressive modelling approach to the analysis of electronic diary data. BMCmedical research methodology, ��(�), �8.

Wilensky, U. (����).NetLogo.NorthwesternUniversity, Evanston, IL: Center for Connected Learn-

���

Page 32: A R...A TUTORIAL ON R PACKAGE ISINGFIT To illustrate the effect of different values of ∞ ,weusedthesubsampleof individuals and estimated network structures with ∞ =0 ,.3 6,1 .AsyoucanseeinFigureD.,thenetwork

BIBLIOGRAPHY

ing and Computer-Based Modeling. Retrieved from http://ccl.northwestern.edu/

netlogo/

Wittchen, H. U. (����). Reliability and validity studies of the WHO–Composite InternationalDiagnostic Interview (CIDI): a critical review. Journal of Psychiatric Research, �8(�), ��–8�.

World Health organization. (����). Global Health Risks - Mortality and burden of disease at-tributable to selected major risks.

Wu, F.-Y. (��8�). The potts model. Reviews of modern physics, ��(�), ���.Yin, J., & Li, H. (����). A sparse conditional gaussian graphical model for analysis of genetical

genomics data. The annals of applied statistics, �(�), �6��–�6��.Zeeman, E. C. (����). Catastrophe theory: Selected papers. Addison-Wesley.

���