New Features in qgraph Sacha Epskamp

Size: px
Start display at page:

Download "New Features in qgraph Sacha Epskamp"

Transcription

1 New Features in qgraph Sacha Epskamp Contents New features in version.4. EBICglasso refitting Gaussian graphical model fit measures Palettes Themes and colorblind mode New features in version Shortest path graphs Pie charts New features in version.3.5 Centrality and clustering plot scales Smallworldness index New features in version IMPORTANT: new default EBICglasso Means and SDs Legend modes References 5 New features in version.4. EBICglasso refitting The EBICglasso and qgraph functions now have an argument, refit, that can be used to refit a model estimated using the EBICglasso procedure. If set to TRUE, the optimal graph structure is used, but edge weights are re-estimated without LASSO regularization. This can lead to a different interpretation of the model, and is important when comparing fit of the network to other models that are not regularized. For example: library("qgraph" library("psych" data(bfi # Compute correlation matrix: CorMat <- cor_auto(bfi[,:5] layout(t(: # Original: Original <- qgraph(cormat, graph = "glasso", samplesize = nrow(bfi, layout = "spring", refit = FALSE, title = "Original" # Refitted: qgraph(cormat, graph = "glasso", samplesize = nrow(bfi, layout = Original$layout, refit = TRUE, title = "Refitted"

2 Original Refitted N N C C A A E E O O Gaussian graphical model fit measures The qgraph package now contains the function ggmfit, which can be used to obtain fit measures from a Gaussian graphical model (GGM; the partial correlation network obtained with graph = "glasso". This is made possible due to the recent formulation of the GGM as a psychometric model (Epskamp, Rhemtulla, and Borsboom 06 and makes use of codes inspired by the lavaan package, which are also used in the lvnet package. The input is a qgraph object, a partial correlation matrix or an inverse variance-covariance matrix. The network is refitted by default to obtain fit measures comparable to Lavaan. Important to note is that the fit measures are only appropriate if the input to EBICglasso was a variance covariance matrix of the raw data. That is, the fit measures do not take polychoric correlations into account. This is expected in a future version of qgraph. For example: library("qgraph" library("psych" data(bfi # Compute covariance matrix: CovMat <- cov(bfi[,:5], use="pairwise.complete.obs" # Estimate network:: GGMnetwork <- qgraph(covmat, graph = "glasso", samplesize = nrow(bfi, layout = "spring", refit = FALSE, title = "Original", DoNotPlot = TRUE # Fit measures: fitggm <- ggmfit(ggmnetwork, covmat = CovMat, samplesize = nrow(bfi fitggm ## ## ggmfit object: ## Use plot(object to plot the network structure

3 ## Fit measures stored under object$fitmeasures ## ## Measure Value ## nvar 5 ## nobs 35 ## 3 npar 55 ## 4 df 70 ## 5 fmin 0.05 ## 6 chisq ## 7 pvalue < ## 8 baseline.chisq ## 9 baseline.df 5 ## 0 baseline.pvalue 0 ## nfi.0 ## tli.0 ## 3 rfi.0 ## 4 ifi.0 ## 5 rni.0 ## 6 cfi.0 ## 7 rmsea 0.06 ## 8 rmsea.ci.lower 0.03 ## 9 rmsea.ci.upper 0.09 ## 0 rmsea.pvalue ## rmr 0.07 ## srmr 0.03 ## 3 logl ## 4 unrestricted.logl ## 5 aic ## 6 bic ## 7 bic ## 8 ebic # Estimate factor model in Lavaan: library("lavaan" #' Lavaan model: Mod <- ' A =~ A E =~ E C =~ C N =~ N O =~ O ' #' Fit in Lavaan: fitlavaan <- cfa(mod,sample.cov = CovMat, sample.nobs = nrow(bfi,std.lv=true # Compare BIC: # Network: fitggm$fitmeasures$bic ## []

4 # CFA model: fitmeasures(fitlavaan['bic'] ## bic ## Palettes The palette argument can now be used to change the default palette used for coloring nodes. For example, the colorblind option uses the palette from Groups <- c(rep("a",5,rep("c",5,rep("e",5,rep("n",5,rep("o",5 qgraph(cormat, graph = "glasso", samplesize = nrow(bfi, groups = Groups, legend = FALSE, layout = "spring", palette = "colorblind" N C A E O All options currently built in are: Palette rainbow colorblind pastel gray R ggplot Colors The default, using rainbow( Taken from only up to 7 nodes supported Pastel colors previously obtained with pastel = TRUE Shades of gray The R default colors The same palette as used by default in ggplot 4

5 Themes and colorblind mode The new theme argument can be used to change the defaults of various graphical arguments in one go. This is mostly used to change the edge colors to predefined themes. For example, the colorblind theme sets the above palette in addition to changing the edges: qgraph(cormat, graph = "glasso", samplesize = nrow(bfi, groups = Groups, legend = FALSE, layout = "spring", theme = "colorblind" N C A E O In this theme, the default green color is changed to a similar shade of blue ("#0000D5" for edges under the cutoff and "darkblue" for edges over the cutoff. Other theme options are: Theme Colors classic The classic green-red theme colorblind Sets palette = "colorblind" and changes the classic green to blue Hollywood Uses complementary blue (positive and orange (negative Borkulo The colors used in the JAMA psychiatry paper of van Borkulo et al. (05. Similar to colorblind but does not use different colors for edges under the cutoff TeamFortress Colors inspired by Team Fortress Reddit Orangered and Perliwinkle Fried Black edges, with a dark background and only grey nodes Leuven Does not plot a network. Instead, the weights matrix is returned to the console 5

6 New features in version.4.0 Shortest path graphs Using the same network as used above: Graph <- qgraph(cormat, graph = "glasso", samplesize = nrow(bfi, groups = Groups, legend = FALSE, layout = "spring" Inspired by Isvoranu et al. (06, we might be interested in e.g., only the shortest paths between Neuroticism and Agreeableness We can use the new pathways function for this. It takes a qgraph object as input and two vectors with sets of nodes, either specified numerically by using the node number or specified by using the node labels. For example: pathways(graph, from = c("n", "", "", "", "", to = c("a", "", "", "", "" N C A E O The highlighted pathways are edges in shortest paths between Neuroticism and Agreeableness nodes. Pie charts Inspired by Jonas Hasslbeck, pie charts can now be incorporated in plotting of nodes. This can be useful to visualize the difficulty or categorical distribution of a node. To activate pie charts, the pie argument has to be used, with a value between 0 and for each node: library("qgraph" adj <- matrix(,, qgraph(adj, vsize = 30, mar = rep(0,4, 6

7 pie = c(0.3,0.8 Coloring The color is automatically set to a 5% darker version of the color of the node: qgraph(adj, vsize = 30, mar = rep(0,4, pie = c(0.3,0.8, color = c("orange","green" The color of the first block is defined using the piecolor argument (setting it to NA mimics the above behavior and the color of the added block is set by the piecolor argument: qgraph(adj, vsize = 30, mar = rep(0,4, pie = c(0.3,0.8, color = c("orange","green", piecolor = c(na, "black", piecolor = c("white","gray" 7

8 Border size The size of the border can be set using the pieborder argument. Setting this to makes the whole node a pie chart: qgraph(adj, vsize = 30, mar = rep(0,4, pie = c(0.3,0.8, pieborder = The node-label scales with the border if the border is not larger than 0.5. Shifting the pie chart The piestart argument can be used to shift the pie chart. For example: qgraph(adj, vsize = 30, mar = rep(0,4, pie = c(0.3,0.8, piestart = -c(0.3,0.8/ 8

9 Multiple pie blocks To add more pie blocks, a list can be used instead of a vector: qgraph(adj, vsize = 30, mar = rep(0,4, pie = list( c(0.3,0.,0., 0.8 Notice that each element in the pie list is supplemented with a white block (controlled with piecolor argument indicating the area that is not assigned. Also notice that when more than one block is assigned the color is no longer a darker shade of the node color but rather rainbow colors. If the values sum to no white block is added: qgraph(adj, vsize = 30, mar = rep(0,4, pie = list( c(0.3,0.,0.,0.4, c(0.6,0.,0. 9

10 Using the piepastel argument will choose the pastel rainbow set also used in node labels in qgraph instead: qgraph(adj, vsize = 30, mar = rep(0,4, pie = list( c(0.3,0.,0.,0.4, c(0.6,0.,0., piepastel = TRUE The piecolor argument can again be used to change the colors: qgraph(adj, vsize = 30, mar = rep(0,4, pie = list( c(0.3,0.,0.,0.4, c(0.6,0.,0., piecolor = list( c("red","blue","purple","deeppink", c("orange","yellow","green" 0

11 Other shapes The pie functionality also works with some other node shapes qgraph(matrix(,3,3, vsize = 30, mar = rep(0,4, pie = list( c(0.3,0.,0.,0.4, c(0.6,0.,0., 0.6, piepastel = TRUE, shape = c("star","heart","square" 3 New features in version.3.5 Centrality and clustering plot scales The centralityplot and clusteringplot now gained a scale argument, that makes it easier to set the x-axis scale. Set this argument to raw0 to plot the centrality indices on the original scale including the zero

12 value. This will potentially make it more clear when centralities are somewhat equal (although to test this please see the bootnet package; Epskamp, Borsboom, and Fried (06. The functions now give a message when the default scale is used and warns the user that these are z-scores. centralityplot(graph, scale = "raw0" O N E C A Betweenness Closeness Strength Smallworldness index As smallworldness was often very slow, I have added the smallworldindex as well. This function makes the graph unweighted, and computes the usual smallworldness index: smallworldindex(graph ## Warning in smallworldindex(graph: Edge weights removed ## $transitivity ## [] ## ## $transitivity_random ## [] ## ## $APL ## [] ## ## $APL_random ## [] ## ## $index ## [].3684

13 New features in version.3.3 IMPORTANT: new default EBICglasso From the NEWS file: The lambda.min.ratio of EBICglasso now defaults to 0.0 instead of 0., similar to earlier versions of qgraph. This will cause EBICglasso and qgraph(..., graph = "glasso" to potentially return less sparse models! Means and SDs Three new arguments, means, SDs and meanrange, can now be used to gain insight in the distribution of continuous nodes, as long as these are on the same scale. For example: qgraph(cormat, graph = "glasso", samplesize = nrow(bfi, groups = Groups, legend = FALSE, layout = "spring", means = colmeans(bfi[,:5],na.rm=true, SDs = apply(bfi[,:5],,sd,na.rm=true, meanrange = c(,5 N C A E O Legend modes The legend.mode argument now has two new options: style (now the default and style, in which both information from groups and from nodenames are used: Names <- scan(" = "character", sep = "\n" Groups <- rep(c( 'Agreeableness', 'Conscientiousness', 3

14 'Extraversion', 'Neuroticism', 'Opennness',each=5 # Style : qgraph(cormat, graph = "glasso", samplesize = nrow(bfi, groups = Groups, nodenames = Names, layout = "spring", legend.mode = "style", legend.cex = 0.5 E N O C A Agreeableness A: Am indifferent to the feelings of others. : Inquire about others' well being. : Know how to comfort others. : Love children. : Make people feel at ease. Conscientiousness C: Am exacting in my work. : Continue until everything is perfect. : Do things according to a plan. : Do things in a half way manner. : Waste my time. Extraversion E: Don't talk a lot. : Find it difficult to approach others. : Know how to captivate people. : Make friends easily. : Take charge. Neuroticism N: Get angry easily. : Get irritated easily. : Have frequent mood swings. : Often feel blue. : Panic easily. Opennness O: Am full of ideas. : Avoid difficult reading material. : Carry the conversation to a higher level. : Spend time reflecting on things. : Will not probe deeply into a subject. # Style : qgraph(cormat, graph = "glasso", samplesize = nrow(bfi, groups = Groups, nodenames = Names, layout = "spring", legend.mode = "style", legend.cex = 0.5 4

15 E N C A Agreeableness A: Am indifferent to the feelings of others. : Inquire about others' well being. : Know how to comfort others. : Love children. : Make people feel at ease. Conscientiousness C: Am exacting in my work. : Continue until everything is perfect. : Do things according to a plan. : Do things in a half way manner. : Waste my time. Extraversion E: Don't talk a lot. : Find it difficult to approach others. : Know how to captivate people. : Make friends easily. : Take charge. Neuroticism N: Get angry easily. : Get irritated easily. : Have frequent mood swings. : Often feel blue. : Panic easily. Opennness O: Am full of ideas. : Avoid difficult reading material. : Carry the conversation to a higher level. : Spend time reflecting on things. : Will not probe deeply into a subject. O References Borkulo, Claudia D. van, Lynn Boschloo, Denny Borsboom, Brenda W J H Penninx, Lourens J Waldorp, and Robert A Schoevers. 05. Association of Symptom Network Structure With the Course of Depression. JAMA Psychiatry 7 (. American Medical Association: 9 6. Epskamp, Sacha, Denny Borsboom, and Eiko I. Fried. 06. Estimating psychological networks and their accuracy: a tutorial paper. ArXiv Preprint, arxiv: Epskamp, Sacha, M.T. Rhemtulla, and D. Borsboom. 06. Generalized Network Psychometrics: Combining Network and Latent Variable Models. ArXiv Preprint, arxiv: Isvoranu, A. M., Claudia D. van Borkulo, L. Boyette, J. T. W. Wigman, C. H. Vinkers, D. Borsboom, and GROUP Investigators. 06. A Network Approach to Psychosis: Pathways between Childhood Trauma and Psychotic Symptoms. Schizophrenia Bulletin. 5

SEM 1: Confirmatory Factor Analysis

SEM 1: Confirmatory Factor Analysis SEM 1: Confirmatory Factor Analysis Week 2 - Fitting CFA models Sacha Epskamp 10-04-2017 General factor analysis framework: in which: y i = Λη i + ε i y N(0, Σ) η N(0, Ψ) ε N(0, Θ), y i is a p-length vector

More information

SEM 1: Confirmatory Factor Analysis

SEM 1: Confirmatory Factor Analysis SEM 1: Confirmatory Factor Analysis Week 3 - Measurement invariance and ordinal data Sacha Epskamp 17-04-2018 General factor analysis framework: in which: y i = Λη i + ε i y N(0, Σ) η N(0, Ψ) ε N(0, Θ),

More information

SEM 1: Confirmatory Factor Analysis

SEM 1: Confirmatory Factor Analysis SEM 1: Confirmatory Factor Analysis Week 3 - Measurement invariance and ordinal data Sacha Epskamp 18-04-2017 General factor analysis framework: in which: y i = Λη i + ε i y N(0, Σ) η N(0, Ψ) ε N(0, Θ),

More information

Estimating Psychological Networks and their Accuracy: Supplementary Materials

Estimating Psychological Networks and their Accuracy: Supplementary Materials Estimating Psychological Networks and their Accuracy: Supplementary Materials Sacha Epskamp, Denny Borsboom and Eiko I. Fried Department of Psychology, University of Amsterdam Contents Psychological Networks

More information

Package mlvar. August 26, 2018

Package mlvar. August 26, 2018 Type Package Title Multi-Level Vector Autoregression Version 0.4.1 Depends R (>= 3.3.0) Package mlvar August 26, 2018 Imports lme4, arm, qgraph, dplyr, clustergeneration, mvtnorm, corpcor, plyr, abind,

More information

Preview from Notesale.co.uk Page 2 of 61

Preview from Notesale.co.uk Page 2 of 61 Modify a table Applying styles to tables; banding rows and columns; inserting total rows; removing styles from tables Filter and sort a table Filtering records; sorting data on multiple columns; changing

More information

A presentation from the Telemetrics Lab

A presentation from the Telemetrics Lab A presentation from the Telemetrics Lab Telemetrics lab Department of Psychology Northwestern University Evanston, Illinois USA November, 2010 Outline 1 Data from a Correlation Matrix Simulated data Real

More information

Making Tables and Graphs with Excel. The Basics

Making Tables and Graphs with Excel. The Basics Making Tables and Graphs with Excel The Basics Where do my IV and DV go? Just like you would create a data table on paper, your IV goes in the leftmost column and your DV goes to the right of the IV Enter

More information

Excel 2010 Charts and Graphs

Excel 2010 Charts and Graphs Excel 2010 Charts and Graphs In older versions of Excel the chart engine looked tired and old. Little had changed in 15 years in charting. The popular chart wizard has been replaced in Excel 2010 by a

More information

Section 4 General Factorial Tutorials

Section 4 General Factorial Tutorials Section 4 General Factorial Tutorials General Factorial Part One: Categorical Introduction Design-Ease software version 6 offers a General Factorial option on the Factorial tab. If you completed the One

More information

MS Office for Engineers

MS Office for Engineers MS Office for Engineers Lesson 4 Excel 2 Pre-reqs/Technical Skills Basic knowledge of Excel Completion of Excel 1 tutorial Basic computer use Expectations Read lesson material Implement steps in software

More information

Introduction. Understanding charts. Excel 2016

Introduction. Understanding charts. Excel 2016 Excel 2016 Charts Introduction It can be di icult to interpret Excel workbooks that contain a lot of data. Charts allow you to illustrate your workbook data graphically, which makes it easy to visualize

More information

Design Elements. Advanced Higher Graphic Presentation. Professional Graphic Presentations by kind permission of

Design Elements. Advanced Higher Graphic Presentation. Professional Graphic Presentations by kind permission of Design Elements Advanced Higher Graphic Presentation Professional Graphic Presentations by kind permission of Lines can Design Element:- Line Convey a mood or an emotion. Organise the design. Establish

More information

Making Tables and Figures

Making Tables and Figures Making Tables and Figures Don Quick Colorado State University Tables and figures are used in most fields of study to provide a visual presentation of important information to the reader. They are used

More information

The lavaan tutorial. Yves Rosseel Department of Data Analysis Ghent University (Belgium) December 18, 2017

The lavaan tutorial. Yves Rosseel Department of Data Analysis Ghent University (Belgium) December 18, 2017 The lavaan tutorial Yves Rosseel Department of Data Analysis Ghent University (Belgium) December 18, 2017 Abstract If you are new to lavaan, this is the place to start. In this tutorial, we introduce the

More information

Graphing Interface Overview

Graphing Interface Overview Graphing Interface Overview Note: This document is a reference for using JFree Charts. JFree Charts is m-power s legacy graphing solution, and has been deprecated. JFree Charts have been replace with Fusion

More information

An introduction to network inference and mining - TP

An introduction to network inference and mining - TP An introduction to network inference and mining - TP Nathalie Villa-Vialaneix - nathalie.villa@toulouse.inra.fr http://www.nathalievilla.org INRA, UR 0875 MIAT Formation INRA, Niveau 3 Formation INRA (Niveau

More information

GO! with Microsoft PowerPoint 2016 Comprehensive

GO! with Microsoft PowerPoint 2016 Comprehensive GO! with Microsoft PowerPoint 2016 Comprehensive First Edition Chapter 3 Enhancing a Presentation with Animation, Video, Tables, and Charts Learning Objectives Customize Slide Backgrounds and Themes Animate

More information

Charts in Excel 2003

Charts in Excel 2003 Charts in Excel 2003 Contents Introduction Charts in Excel 2003...1 Part 1: Generating a Basic Chart...1 Part 2: Adding Another Data Series...3 Part 3: Other Handy Options...5 Introduction Charts in Excel

More information

Excel R Tips. is used for multiplication. + is used for addition. is used for subtraction. / is used for division

Excel R Tips. is used for multiplication. + is used for addition. is used for subtraction. / is used for division Excel R Tips EXCEL TIP 1: INPUTTING FORMULAS To input a formula in Excel, click on the cell you want to place your formula in, and begin your formula with an equals sign (=). There are several functions

More information

Excel Tips and FAQs - MS 2010

Excel Tips and FAQs - MS 2010 BIOL 211D Excel Tips and FAQs - MS 2010 Remember to save frequently! Part I. Managing and Summarizing Data NOTE IN EXCEL 2010, THERE ARE A NUMBER OF WAYS TO DO THE CORRECT THING! FAQ1: How do I sort my

More information

NMRA 2013 Peachtree Express Control Panel Editor - A

NMRA 2013 Peachtree Express Control Panel Editor - A NMRA 2013 Peachtree Express Control Panel Editor - A Dick Bronson RR-CirKits, Inc. JMRI Control Panel Editor for Modern Style Dispatching Panels Types of JMRI PanelPro Editors Layout Editor Panel Editor

More information

COLLEGE OF EDUCATION FACULTY RESEARCH CENTER. Professional Poster Tutorial

COLLEGE OF EDUCATION FACULTY RESEARCH CENTER. Professional Poster Tutorial COLLEGE OF EDUCATION FACULTY RESEARCH CENTER Professional Poster Tutorial Written By Amy Prosser, M.A. and Janet Rinker, B.S. Graduate Research Assistants Revised Fall 2009 By Amy Prosser, M.A. and Sami

More information

KNIME TUTORIAL. Anna Monreale KDD-Lab, University of Pisa

KNIME TUTORIAL. Anna Monreale KDD-Lab, University of Pisa KNIME TUTORIAL Anna Monreale KDD-Lab, University of Pisa Email: annam@di.unipi.it Outline Introduction on KNIME KNIME components Exercise: Data Understanding Exercise: Market Basket Analysis Exercise:

More information

Package RCA. R topics documented: February 29, 2016

Package RCA. R topics documented: February 29, 2016 Type Package Title Relational Class Analysis Version 2.0 Date 2016-02-25 Author Amir Goldberg, Sarah K. Stein Package RCA February 29, 2016 Maintainer Amir Goldberg Depends igraph,

More information

Conducting a Path Analysis With SPSS/AMOS

Conducting a Path Analysis With SPSS/AMOS Conducting a Path Analysis With SPSS/AMOS Download the PATH-INGRAM.sav data file from my SPSS data page and then bring it into SPSS. The data are those from the research that led to this publication: Ingram,

More information

Regression on SAT Scores of 374 High Schools and K-means on Clustering Schools

Regression on SAT Scores of 374 High Schools and K-means on Clustering Schools Regression on SAT Scores of 374 High Schools and K-means on Clustering Schools Abstract In this project, we study 374 public high schools in New York City. The project seeks to use regression techniques

More information

An Oracle White Paper October Oracle Social Cloud Platform Text Analytics

An Oracle White Paper October Oracle Social Cloud Platform Text Analytics An Oracle White Paper October 2012 Oracle Social Cloud Platform Text Analytics Executive Overview Oracle s social cloud text analytics platform is able to process unstructured text-based conversations

More information

Learn about PowerPoint: Create your first presentation

Learn about PowerPoint: Create your first presentation Learn about PowerPoint: Create your first presentation In this tutorial, you will create a simple presentation to learn the skills basic to working with all presentations. Step 1: Get started Open PowerPoint

More information

Estimation of a hierarchical Exploratory Structural Equation Model (ESEM) using ESEMwithin-CFA

Estimation of a hierarchical Exploratory Structural Equation Model (ESEM) using ESEMwithin-CFA Estimation of a hierarchical Exploratory Structural Equation Model (ESEM) using ESEMwithin-CFA Alexandre J.S. Morin, Substantive Methodological Synergy Research Laboratory, Department of Psychology, Concordia

More information

Charting Progress with a Spreadsheet

Charting Progress with a Spreadsheet Charting Progress - 1 Charting Progress with a Spreadsheet We shall use Microsoft Excel to demonstrate how to chart using a spreadsheet. Other spreadsheet programs (e.g., Quattro Pro, Lotus) are similarly

More information

Excel Tutorial 4: Analyzing and Charting Financial Data

Excel Tutorial 4: Analyzing and Charting Financial Data Excel Tutorial 4: Analyzing and Charting Financial Data Microsoft Office 2013 Objectives Use the PMT function to calculate a loan payment Create an embedded pie chart Apply styles to a chart Add data labels

More information

Scientific Graphing in Excel 2013

Scientific Graphing in Excel 2013 Scientific Graphing in Excel 2013 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

Read More: How to Create Combination Charts with a Secondary Axis in Excel

Read More: How to Create Combination Charts with a Secondary Axis in Excel A pie chart is used to showcase parts of a whole or proportions of a whole. Charts are visual representations of data that can summarize large data sets and are useful for engaging one s audience. As always,

More information

Working with Census Data Excel 2013

Working with Census Data Excel 2013 Working with Census Data Excel 2013 Preparing the File If you see a lot of little green triangles next to the numbers, there is an error or warning that Excel is trying to call to your attention. In my

More information

WORD Creating Objects: Tables, Charts and More

WORD Creating Objects: Tables, Charts and More WORD 2007 Creating Objects: Tables, Charts and More Microsoft Office 2007 TABLE OF CONTENTS TABLES... 1 TABLE LAYOUT... 1 TABLE DESIGN... 2 CHARTS... 4 PICTURES AND DRAWINGS... 8 USING DRAWINGS... 8 Drawing

More information

Data Visualization and Images

Data Visualization and Images 3 EXCEL I LU A T IO N O N LY Data Visualization and Images n this chapter, you will learn a variety of ways to create visually interesting worksheets. This chapter will help A you understand when to create

More information

Book 5. Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons

Book 5. Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons Chapter 2: Slides with Charts & Shapes... 12 Working with Charts

More information

How Do I Choose Which Type of Graph to Use?

How Do I Choose Which Type of Graph to Use? How Do I Choose Which Type of Graph to Use? When to Use...... a Line graph. Line graphs are used to track changes over short and long periods of time. When smaller changes exist, line graphs are better

More information

Module 7 - Housing Bubble Dashboard - Part 1-1

Module 7 - Housing Bubble Dashboard - Part 1-1 Module 7 - Housing Bubble Dashboard - Part 1 TOPICS COVERED: In this module, we will learn how to creatie professional, dynamic business dashboards in Excel. 1) New York Times - Housing Bubble Infographic

More information

Introduction to Factor Analysis for Marketing

Introduction to Factor Analysis for Marketing Introduction to Factor Analysis for Marketing SKIM/Sawtooth Software Conference 2016, Rome Chris Chapman, Google. April 2016. Special thanks to Josh Lewandowski at Google for helpful feedback (errors are

More information

Reliability Coefficients

Reliability Coefficients Reliability Coefficients Introductory notes That data used for these computations is the pre-treatment scores of all subjects. There are three items in the SIAS (5, 9 and 11) that require reverse-scoring.

More information

Inventions on auto-configurable GUI-A TRIZ based analysis

Inventions on auto-configurable GUI-A TRIZ based analysis From the SelectedWorks of Umakant Mishra September, 2007 Inventions on auto-configurable GUI-A TRIZ based analysis Umakant Mishra Available at: https://works.bepress.com/umakant_mishra/66/ Inventions on

More information

Lecture 4: Spatial Domain Transformations

Lecture 4: Spatial Domain Transformations # Lecture 4: Spatial Domain Transformations Saad J Bedros sbedros@umn.edu Reminder 2 nd Quiz on the manipulator Part is this Fri, April 7 205, :5 AM to :0 PM Open Book, Open Notes, Focus on the material

More information

Homework 1 Excel Basics

Homework 1 Excel Basics Homework 1 Excel Basics Excel is a software program that is used to organize information, perform calculations, and create visual displays of the information. When you start up Excel, you will see the

More information

Creating a Basic Chart in Excel 2007

Creating a Basic Chart in Excel 2007 Creating a Basic Chart in Excel 2007 A chart is a pictorial representation of the data you enter in a worksheet. Often, a chart can be a more descriptive way of representing your data. As a result, those

More information

Study Guide. Module 1. Key Terms

Study Guide. Module 1. Key Terms Study Guide Module 1 Key Terms general linear model dummy variable multiple regression model ANOVA model ANCOVA model confounding variable squared multiple correlation adjusted squared multiple correlation

More information

The Excel file that goes with the exercise in this guide is located to the right of the guide in the same row you downloaded the guide from.

The Excel file that goes with the exercise in this guide is located to the right of the guide in the same row you downloaded the guide from. USC Marshall School of Business Academic Information Services Excel 2007 Presenting Data Sparklines and Conditional Formatting Excel Exercise File The Excel file that goes with the exercise in this guide

More information

Unified Visualizations of Structural Equation Models

Unified Visualizations of Structural Equation Models Chapter 11 Unified Visualizations of Structural Equation Models Abstract Structural Equation Modeling (SEM) has a long history of representing models graphically as path diagrams. This chapter presents

More information

Application of Skills: Microsoft Excel 2013 Tutorial

Application of Skills: Microsoft Excel 2013 Tutorial Application of Skills: Microsoft Excel 2013 Tutorial Throughout this module, you will progress through a series of steps to create a spreadsheet for sales of a club or organization. You will continue to

More information

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer The American University in Cairo Excel 2000 prepared by Maha Amer Spring 2001 Table of Contents: Opening the Excel Program Creating, Opening and Saving Excel Worksheets Sheet Structure Formatting Text

More information

Read Temperature Data

Read Temperature Data Read Temperature Data Exercise 5 Completed front panel and block diagram In this exercise, you will create a program using SensorDAQ s Analog Express VI to collect temperature data and display it on a

More information

Creating Charts in Office 2007 Table of Contents

Creating Charts in Office 2007 Table of Contents Table of Contents Microsoft Charts... 1 Inserting a Chart in Excel... 1 Tip Shortcut Key to Create a Default Chart in Excel... 2 Activating Your Chart... 2 Resizing an Embedded Chart... 2 Moving a Chart...

More information

What is KNIME? workflows nodes standard data mining, data analysis data manipulation

What is KNIME? workflows nodes standard data mining, data analysis data manipulation KNIME TUTORIAL What is KNIME? KNIME = Konstanz Information Miner Developed at University of Konstanz in Germany Desktop version available free of charge (Open Source) Modular platform for building and

More information

Microsoft Office Excel 2016 for Mac

Microsoft Office Excel 2016 for Mac Microsoft Office Excel 2016 for Mac Introduction to Charts University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2016 KSU Division of University Information

More information

Exploratory model analysis

Exploratory model analysis Exploratory model analysis with R and GGobi Hadley Wickham 6--8 Introduction Why do we build models? There are two basic reasons: explanation or prediction [Ripley, 4]. Using large ensembles of models

More information

Microsoft Office Word 2013 Intermediate. Course 01 Working with Tables and Charts

Microsoft Office Word 2013 Intermediate. Course 01 Working with Tables and Charts Microsoft Office Word 2013 Intermediate Course 01 Working with Tables and Charts Slide 1 Course 01: Working with Tables and Charts Sort Table Data Control Cell Layout Perform Calculations in a Table Create

More information

MKTG 460 Winter 2019 Solutions #1

MKTG 460 Winter 2019 Solutions #1 MKTG 460 Winter 2019 Solutions #1 Short Answer: Data Analysis 1. What is a data table and how are the data values organized? A data table stores the data values for variables across different observations,

More information

Desktop Studio: Charts. Version: 7.3

Desktop Studio: Charts. Version: 7.3 Desktop Studio: Charts Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

addition + =5+C2 adds 5 to the value in cell C2 multiplication * =F6*0.12 multiplies the value in cell F6 by 0.12

addition + =5+C2 adds 5 to the value in cell C2 multiplication * =F6*0.12 multiplies the value in cell F6 by 0.12 BIOL 001 Excel Quick Reference Guide (Office 2010) For your lab report and some of your assignments, you will need to use Excel to analyze your data and/or generate graphs. This guide highlights specific

More information

SUM - This says to add together cells F28 through F35. Notice that it will show your result is

SUM - This says to add together cells F28 through F35. Notice that it will show your result is COUNTA - The COUNTA function will examine a set of cells and tell you how many cells are not empty. In this example, Excel analyzed 19 cells and found that only 18 were not empty. COUNTBLANK - The COUNTBLANK

More information

Read More: How to Make a Pie Chart in Excel [Video Tutorial]

Read More: How to Make a Pie Chart in Excel [Video Tutorial] Most of us are familiar with standard Excel chart types such as a pie chart, a column chart, and a line chart, as well as the types of data they are used to showcase visually. Excel, however, offers a

More information

INDEX UNIT 4 PPT SLIDES

INDEX UNIT 4 PPT SLIDES INDEX UNIT 4 PPT SLIDES S.NO. TOPIC 1. 2. Screen designing Screen planning and purpose arganizing screen elements 3. 4. screen navigation and flow Visually pleasing composition 5. 6. 7. 8. focus and emphasis

More information

lavaan: an R package for structural equation modeling and more Version (BETA)

lavaan: an R package for structural equation modeling and more Version (BETA) lavaan: an R package for structural equation modeling and more Version 0.4-9 (BETA) Yves Rosseel Department of Data Analysis Ghent University (Belgium) June 14, 2011 Abstract The lavaan package is developed

More information

MICROSOFT EXCEL Working with Charts

MICROSOFT EXCEL Working with Charts MICROSOFT EXCEL 2010 Working with Charts Introduction to charts WORKING WITH CHARTS Charts basically represent your data graphically. The data here refers to numbers. In Excel, you have various types of

More information

CS Introduction to Computational and Data Science. Instructor: Renzhi Cao Computer Science Department Pacific Lutheran University Spring 2017

CS Introduction to Computational and Data Science. Instructor: Renzhi Cao Computer Science Department Pacific Lutheran University Spring 2017 CS 133 - Introduction to Computational and Data Science Instructor: Renzhi Cao Computer Science Department Pacific Lutheran University Spring 2017 Announcement Read book for R control structure and function.

More information

Choosing Paper Size and Layout. UP TO SPEED Of Menus and Boxes

Choosing Paper Size and Layout. UP TO SPEED Of Menus and Boxes Choosing Paper Size and Layout When you edit a document in Word, what you see on your computer screen looks almost exactly like the final printed page. To get that correct preview, Word needs to know some

More information

Package gppm. July 5, 2018

Package gppm. July 5, 2018 Version 0.2.0 Title Gaussian Process Panel Modeling Package gppm July 5, 2018 Provides an implementation of Gaussian process panel modeling (GPPM). GPPM is described in Karch (2016; )

More information

Desktop Studio: Charts

Desktop Studio: Charts Desktop Studio: Charts Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Working with Charts i Copyright 2011 Intellicus Technologies This document

More information

Correlation Motif Vignette

Correlation Motif Vignette Correlation Motif Vignette Hongkai Ji, Yingying Wei October 30, 2018 1 Introduction The standard algorithms for detecting differential genes from microarray data are mostly designed for analyzing a single

More information

Advanced Microsoft Excel 2010

Advanced Microsoft Excel 2010 Agenda: 1. Introduction 2. Complex formulas & cell references 3. Functions 4. Charts 5. Pivot Tables 6. Practice and Questions In order to keep computer literacy programs running in the future, we must

More information

MODULATING A POLYCHROMATIC IMAGE BY A 2 ND IMAGE PLOTTED AGAINST SATURATION AND A 3 RD IMAGE PLOTTED AGAINST LIGHTNESS: PROGRAM hlsplot

MODULATING A POLYCHROMATIC IMAGE BY A 2 ND IMAGE PLOTTED AGAINST SATURATION AND A 3 RD IMAGE PLOTTED AGAINST LIGHTNESS: PROGRAM hlsplot MODULATING A POLYCHROMATIC IMAGE BY A 2 ND IMAGE PLOTTED AGAINST SATURATION AND A 3 RD IMAGE PLOTTED AGAINST LIGHTNESS: PROGRAM hlsplot Plotting dip vs. azimuth vs. coherence Program hlsplot Earlier, we

More information

semplot: Unified visualizations of Structural Equation Models

semplot: Unified visualizations of Structural Equation Models semplot: Unified visualizations of Structural Equation Models Sacha Epskamp University of Amsterdam Department of Psychological Methods Psychoco 204 3-02-204 semplot R package dedicated to visualizing

More information

Chapter 13. Creating Business Diagrams with SmartArt. Creating SmartArt Diagrams

Chapter 13. Creating Business Diagrams with SmartArt. Creating SmartArt Diagrams Chapter 13 Creating Business Diagrams with SmartArt Office 2007 adds support for 80 different types of business diagrams. These diagrams include list charts, process charts, cycle charts, hierarchy and

More information

Slides by. John Loucks. St. Edward s University. Slide South-Western, a part of Cengage Learning

Slides by. John Loucks. St. Edward s University. Slide South-Western, a part of Cengage Learning Slides by John Loucks St. Edward s University Slide 1 Chapter 2, Part B Descriptive Statistics: Tabular and Graphical Presentations Exploratory Data Analysis: Stem-and-Leaf Display Crosstabulations and

More information

Tutorial: Using Tina Vision s Quantitative Pattern Recognition Tool.

Tutorial: Using Tina Vision s Quantitative Pattern Recognition Tool. Tina Memo No. 2014-004 Internal Report Tutorial: Using Tina Vision s Quantitative Pattern Recognition Tool. P.D.Tar. Last updated 07 / 06 / 2014 ISBE, Medical School, University of Manchester, Stopford

More information

Spreadsheet Concepts: Creating Charts in Microsoft Excel

Spreadsheet Concepts: Creating Charts in Microsoft Excel Spreadsheet Concepts: Creating Charts in Microsoft Excel lab 6 Objectives: Upon successful completion of Lab 6, you will be able to Create a simple chart on a separate chart sheet and embed it in the worksheet

More information

POWERPOINT Build a Presentation to Remember

POWERPOINT Build a Presentation to Remember POWERPOINT 2007 Build a Presentation to Remember Microsoft Office 2007 TABLE OF CONTENTS DOCUMENT THEMES... 1 THEMES... 1 COLOR SETS... 1 FONT SETS... 1 MASTER SLIDES... 2 USING THEMES IN THE SLIDE MASTER...

More information

Fathom Dynamic Data TM Version 2 Specifications

Fathom Dynamic Data TM Version 2 Specifications Data Sources Fathom Dynamic Data TM Version 2 Specifications Use data from one of the many sample documents that come with Fathom. Enter your own data by typing into a case table. Paste data from other

More information

Technology Assignment: Scatter Plots

Technology Assignment: Scatter Plots The goal of this assignment is to create a scatter plot of a set of data. You could do this with any two columns of data, but for demonstration purposes we ll work with the data in the table below. You

More information

Understand and plan a chart Create a chart Move and resize charts and chart objects Apply chart layouts and styles

Understand and plan a chart Create a chart Move and resize charts and chart objects Apply chart layouts and styles Working with Charts Objectives Understand and plan a chart Create a chart Move and resize charts and chart objects Apply chart layouts and styles 2 Objectives Customize chart elements Enhance a chart Create

More information

PROFILE DESIGN TUTORIAL KIT

PROFILE DESIGN TUTORIAL KIT PROFILE DESIGN TUTORIAL KIT NEW PROFILE With the help of feedback from our users and designers worldwide, we ve given our profiles a new look and feel. The new profile is designed to enhance yet simplify

More information

CPM-200 User Guide For Lighthouse for MAX

CPM-200 User Guide For Lighthouse for MAX CPM-200 User Guide For Lighthouse for MAX Contents Page Number Opening the software 2 Altering the page size & Orientation 3-4 Inserting Text 5 Editing Text 6 Inserting Graphics 7-8 Changing the Colour

More information

Basic Microsoft Excel Skills

Basic Microsoft Excel Skills Basic Microsoft Excel Skills Note : This tutorial is based upon Microsoft Excel 2000. If you are using MSExcel 1997 or 2002, there may be some operations which look slightly different (e.g. graphs), but

More information

CSS gives great power. But requires great responsibility.

CSS gives great power. But requires great responsibility. CSS gives great power. But requires great responsibility. You can do almost anything with CSS. You can do almost anything with CSS. Change colors You can do almost anything with CSS. Change colors, opacity

More information

Saratoga Springs City School District/Office of Continuing Education Introduction to Microsoft Excel 04 Charts. 1. Chart Types and Dimensions

Saratoga Springs City School District/Office of Continuing Education Introduction to Microsoft Excel 04 Charts. 1. Chart Types and Dimensions 1949 1954 1959 1964 1969 1974 1979 1984 1989 1994 1999 2004 Saratoga Springs City School District/Office of Continuing Education Introduction to Microsoft Excel 04 Charts 1. Chart Types and Dimensions

More information

15-Minute Fix: A Step-by-Step Guide to Designing Beautiful Dashboards

15-Minute Fix: A Step-by-Step Guide to Designing Beautiful Dashboards 15-Minute Fix: A Step-by-Step Guide to Designing Beautiful Dashboards With a dashboard, every unnecessary piece of information results in time wasted trying to filter out what s important. Stephen Few,

More information

Package jrt. January 4, 2019

Package jrt. January 4, 2019 Package jrt January 4, 2019 Title Item Response Theory Modeling and Scoring for Judgment Data Version 1.0.0 Description Psychometric analysis and scoring of judgment data using polytomous Item- Response

More information

PHYC 500: Introduction to LabView. Exercise 1 (v 1.3) M.P. Hasselbeck, University of New Mexico

PHYC 500: Introduction to LabView. Exercise 1 (v 1.3) M.P. Hasselbeck, University of New Mexico PHYC 500: Introduction to LabView M.P. Hasselbeck, University of New Mexico Exercise 1 (v 1.3) Setup The user interface of LabView is highly customizable. How this is done is a personal preference. For

More information

Binary IFA-IRT Models in Mplus version 7.11

Binary IFA-IRT Models in Mplus version 7.11 Binary IFA-IRT Models in Mplus version 7.11 Example data: 635 older adults (age 80-100) self-reporting on 7 items assessing the Instrumental Activities of Daily Living (IADL) as follows: 1. Housework (cleaning

More information

Microsoft Excel 2002 M O D U L E 2

Microsoft Excel 2002 M O D U L E 2 THE COMPLETE Excel 2002 M O D U L E 2 CompleteVISUAL TM Step-by-step Series Computer Training Manual www.computertrainingmanual.com Copyright Notice Copyright 2002 EBook Publishing. All rights reserved.

More information

Microsoft Office Word 2007 Illustrated Complete. Exploring Advanced Graphics

Microsoft Office Word 2007 Illustrated Complete. Exploring Advanced Graphics Microsoft Office Word 2007 Illustrated Complete Exploring Advanced Graphics Objectives Understand illustrations in Word Modify a picture Edit charts Create SmartArt Edit clip art 2 Objectives Use layering

More information

Instructions for Figure Submission

Instructions for Figure Submission Instructions for Figure Submission Below are instructions for submitting digital artwork to the journal Stroke. Please note that minor changes may occur when the figures are imported into the proof; however,

More information

Content provided in partnership with Que, from the book Show Me Microsoft Office Access 2003 by Steve JohnsonÃÃ

Content provided in partnership with Que, from the book Show Me Microsoft Office Access 2003 by Steve JohnsonÃÃ ,PSURYLQJWKH$SSHDUDQFHRI )RUPVDQGHSRUWV Content provided in partnership with Que, from the book Show Me Microsoft Office Access 00 by Steve JohnsonÃÃ Introduction The objects in a database most on display

More information

Chapter 4. Microsoft Excel

Chapter 4. Microsoft Excel Chapter 4 Microsoft Excel Topic Introduction Spreadsheet Basic Screen Layout Modifying a Worksheet Formatting Cells Formulas and Functions Sorting and Filling Borders and Shading Charts Introduction A

More information

NUMERICAL COMPUTING For Finance Using Excel. Sorting and Displaying Data

NUMERICAL COMPUTING For Finance Using Excel. Sorting and Displaying Data NUMERICAL COMPUTING For Finance Using Excel Sorting and Displaying Data Outline 1 Sorting data Excel Sort tool (sort data in ascending or descending order) Simple filter (by ROW, COLUMN, apply a custom

More information

Contents. About this Book...1 Audience... 1 Prerequisites... 1 Conventions... 2

Contents. About this Book...1 Audience... 1 Prerequisites... 1 Conventions... 2 Contents About this Book...1 Audience... 1 Prerequisites... 1 Conventions... 2 1 About SAS Sentiment Analysis Workbench...3 1.1 What Is SAS Sentiment Analysis Workbench?... 3 1.2 Benefits of Using SAS

More information

Excel 2010: Getting Started with Excel

Excel 2010: Getting Started with Excel Excel 2010: Getting Started with Excel Excel 2010 Getting Started with Excel Introduction Page 1 Excel is a spreadsheet program that allows you to store, organize, and analyze information. In this lesson,

More information

Activant Solutions Inc. MORE Microsoft Excel Tips and Tricks

Activant Solutions Inc. MORE Microsoft Excel Tips and Tricks Activant Solutions Inc. MORE Microsoft Excel Tips and Tricks Objectives Work more efficiently with Excel worksheets Utilize formatting and charts to get your message across effectively Use Conditional

More information