Fitted Rectangles: A Visualization for Clustered Graphs

Size: px
Start display at page:

Download "Fitted Rectangles: A Visualization for Clustered Graphs"

Transcription

1 Fitted Rectangles: A Visualization for Clustered Graphs Snigdha Chaturvedi Computer Science, University of Maryland snigdhac@cs.umd.edu Zahra Ashktorab Information School, University of Maryland parnia@umd.edu Rajan Zacharia Information School, University of Maryland rajankz@umd.edu ABSTRACT Community structures and relationships within graphs are a significant facet of data analysis and data visualization. The existence of relationships between communities and the strength between communities in a graph is an important graph attribute and the visual clarity of these relationships could provide insights during the exploratory phase of data analysis. Currently, there is no effective way of visualizing a graph to ensure that the relationships between clusters is clear. We propose Fitted-Rectangle Layout (FRL), a metalayout for graphs that the visualizes clusters and their respective inter-group edges clearly. FRL takes into consideration the order of the clusters within a graph when laying them out and places them in order of decreasing connectivity of a group to all other groups. The most connected group is placed in the center of the graph, while all others are placed around it. The goal of the FRL is to clearly visualize the inter-group edges and to decrease the overlapping of inter-group edges that occurs in other Tree- Map layouts. By conducting usability studies, we found that users prefer the FRL layout to the GIB layout when seeking for inter-group relationship information in the visualization. Author Keywords network visualization; layout; meta-layout; force-directed; graph clustering visualization; communities 1) INTRODUCTION Network visualization is a challenging task involving studying properties of hundreds and thousands of entities and the relationships between them. With the recent surge in popularity of social networks, the growing size of these networks makes their analysis interesting but more difficult. Graph clustering plays an important role in network analysis. It refers to topology based clustering of vertices into several groups or communities such that the connections within groups are tighter than those between groups. For example, in a Twitter follower network, people who very frequently follow/re-tweet each other would form one community such as the community of sports people or Permission to make digital or hard copies of all or part of this work for personal or classroom use is granted without fee provided that copies are not made or distributed for profit or commercial advantage and that copies bear this notice and the full citation on the first page. To copy otherwise, or republish, to post on servers or to redistribute to lists, requires prior specific permission and/or a fee. CHI 13, April 27 May 2, 2013, Paris, France. Copyright 2013 ACM XXXX-XXXX-X/XX/XX...$ politicians or actors etc. Another popular approach is to group the vertices based on some common attribute such as geographical location or interests. Often the vertices belonging to same community tend to behave similarly and so, it can be useful to study individual communities in greater detail. In most visualization tools, viewing the communities is facilitated by using distinctive colors and shapes to represent group identity. For example, politicians can be represented by red circle while actors by blue triangles. A recent popular method, the 'Group-In-a-Box Layout' [4] enhances this further by assigning specific spatial regions to individual groups. The GIB method lays out individual groups into different well-separated rectangles or 'boxes' (from where it derives its name) revealing the local intra-group network structure and attributes of the members. However, apart from intra-group relationships, it is also interesting to study the inter-group relationships. This helps in understanding the nature of information exchange between groups and how they are different from each other. For example, in any given twitter network, it would be interesting to see if there is a stronger relationship between the sports and the politics community or between the sports and the actors community. One of the ways to visualize this in the GIB method is to 'combine' all the inter-group edges between a pair of groups into one thick edge from center of one group's box to another. Though, this conveniently conveys the 'strength' of connections between groups, it leads to an abundance of overlap among these thick 'combined' inter-group edges; especially near groups that are highly connected to other groups. For example, in Figure 5(a) we see a lot of overlap between the thick grey combined edges around G1 and G2. This happens because the tree map algorithm used to layout group rectangles does not take the inter-group connectivity into account. This paper addresses this problem by rearranging the group rectangles in a 'U' or a 'Donut' shape such that the most connected group is placed at the core of the 'U' or 'Donut' and is surrounded by other groups. For example Figure 5(b) shows an example of the Donut layout. The edges around G1 and G2 are more discernible than those in Figure 5(a). Our experiments/user study with 9 subjects indicate that such an arrangement is more effective in visualizing the inter-group relationships than the GIB method. In the following sections, we describe the related work and specifically GIB technique in greater detail. We then - 1 -

2 explain our approach to the problem followed by empirical results establishing its effectiveness. We finally conclude the paper by summarizing our contributions and suggesting directions of future work. 2) RELATED WORK The ease of detection of communities within graphs and their inter-connectivities are instrumental in revealing insights. Providing a mechanism to visualize these communities within a visualization tool could aid in the detection of important insights within the data. There has been much previous work done on visualizing communities within a graph. Treemaps have been used in many studies to visualize communities and the sub-communities of which they consist. Frantz et. al describes the usefulness of treemaps for analyzing social networks. During the exploratory part of data visualization and analysis, treemaps can be particularly insightful and revealing, particularly in social network analysis. The original treemap, introduced by Johnson et. al, employed the 'slice and dice' method for representing hierarchical information in rectangular space in a spacefilling manner. The Group-In-A-Box meta-layout is an application of treemaps to aid graph cluster visualization. Rodrigues et. al. introduce Group-In-A-Box as a metalayout that displays each cluster in a treemap enclosed within its own box. A space-filling technique is employed to fill the space with clusters that have been grouped based on their network attributes or clustering algorithms. Each box size is proportional to the number of vertices it s enclosed cluster includes. Furthermore, much work has been done on creating boxes with lower aspect ration in treemaps. The traditional tree mapping algorithms resulted in several thin elongated rectangles which are difficult to point at in an interactive environment. Bruls et. al propose a method a method of organization that results in a treemap which consists of 'squarified' rectangles with lower aspect ratios. While aspect ratios of the squares are significant in a tree-map, our focus is to improve the readability of intergroup relationships between the clusters in the graph. While the GIB implementation of the squarified treemap is an improvement over the original Slice-In-Dice method in terms of improving aspect ration of boxes, resulting overlapping edges between the clusters in GIB increase the clutter in the graph and thus decrease the ease to which users can understand information and draw conclusions from the visualized information. The GIB algorithm does not consider the placement and overlapping of intergroup edges and thus results in overlapping edges that may be detrimental to the readability of the visualization. Our proposed Fitted-Rectangle-Layout visualization, which we will refer to as FRL for the remainder of this paper, solves this problem by taking the intergroup edges into consideration when determining the ordering of the clusters on the graph. Because various clustering algorithms were used when determining the groups in our Fitted-Rectangle Algorithm, selecting the right algorithm was an important facet of our research. One algorithm used was the Wakita- Tsurumi algorithm, an alternative to the Clauset-Newman, and Moore algorithm and one of the three clustering algorithms provided by NodeXL. Wakita et. al propose an alternative to the CNM algorithm that finds connections 70 times faster than the CNM algorithm. This was a factor we considered when choosing our our clustering algorithm because speed is important with any visualization tool. Much research has been conducted on the utilization of force-directed layouts in graphs. This is particularly important, even within clusters within graphs. Two algorithms commonly employed to layout vertices are the Fruchterman-Reingold (FR) layout and the Harel and Koren Layout. While both of these algorithms aim to layout vertices to achieve an optimal graph structure, they use different methods. HK uses recursion to coarsen the graph until it reaches an optimal multi-level representation, while FR uses attractive and repulsive forces to achieve an optimal equilibrium in a graph. We implement our meta-layout in NodeXL, a toolkit that runs as an add-in in Microsoft Excel. Smith et. al. demonstrate the usefulness of NodeXL in data analysis and visualization by using its various sorting, clustering and filtering functionalities. The available clustering algorithms in NodeXL were particularly instrumental in our implementation of PR. 3) METHOD: FITTED RECTANGLES In this section we explain our Fitted rectangles method in detail. The scope of our method is limited to a better visualization of the combined inter-group edges as produced by the GIB method. Our method does not aim at a better layout of the vertices of the graph. Instead, it proposes a meta-layout that attempt to improve inter-group edge overlap caused by the use of treemap layout in the GIB method. In other words, this paper proposes an alternative to the usage of treemap algorithm for arranging the group boxes. In this paper, we propose to alleviate this problem of indiscernible combined inter-group edges by arranging the groups in a U or a Donut layout instead of following a treemap algorithm. Like GIB, each group is allotted a box or rectangle on the 2D screen space whose area is proportional to the number of vertices in the group. The group rectangles are then arranged in a U or Donut layout (explained below). Then the vertices of individual groups are laid out in the box allotted to that group using any of the popular graph layout algorithms like Fruchterman-Reingold algorithm, Harel and Koren algorithm etc. For the rest of this paper, we will be using the following two terms: - 2 -

3 Connectedness. A group's connectedness is defined as the number of other groups it is connected to. In other words it is the number of outgoing combined intergroup edges. G-skewness. For a given graph, this refers to the fraction of vertices present in the two most connected groups (groups with highest connectedness values). Our approach involves placing the group-boxes in a Donut or U layout. In simple terms, in Donut layout, we place the most connected group at the center of the screen and arrange the remaining group all around the center group (See step (viii) of Figure 1). This method should be preferred when there are a lot of small groups in the graph. However, when the graph contains one or two big clusters and a few small clusters, Donut layout might result in a lot of space wastage. In such a case, U layout should be preferred in which the most connected group is placed at the top center portion of the screen and the remaining groups are arranged on the three sides of the previous group forming a U shape (See step (viii) of Figure 2). In general, a Donut layout is more effective in reducing the edge overlap but is less space filling than the U layout. Clearly, there is a tradeoff between the two desired effects. So, if the G-skewness is high, then our method prefers a U layout over Donut layout and vice versa. Defining G to be the total number of groups in the graph, we proceed by dividing the problem into 3 cases: 1. Case1: G<=3 and G-skewness <0.1 Layout the group-boxes using the treemap algorithm as in case of GIB 2. Case2: G>3 and 0.1<= G-skewness <=0.45 Layout the group-boxes using Donut layout 3. Case3: G>3 and G-skewness >0.45 Layout the group-boxes using U layout 3.1) Donut Layout Figure 1 shows an example of a Donut layout with 7 groups. The area occupied by each group is calculated as: Group Area=alpha Screen Area N_groupN_graph where N_group and N_graph represent the number of vertices in the group and graph respectively and alpha =1. The areas, for the current example is specified in the table on the left in the figure. Let us assume that the groups are sorted in decreasing order of connectedness. The various steps of the process are marked as (i) to (viii). The figure also shows that each step is also associated with an array which stores the groups left to be placed at that step. We begin with an empty screen and all the groups in step (i). We then place G1, the most connected group, at the center with an aspect ratio proportional to that of the screen. This is represented as a blue box in Step (ii). Placing G1 divides the screen into two horizontal (H1 and H2) and two vertical (V1 and V2) empty boxes. The remaining groups will be arranged in these boxes alternating in the sequence H1, H2, V1, V2. Since we only know the areas and not the dimensions of the groups, we use the orientation of the empty boxes to determine the group's width or height. While placing a group in a horizontal empty box, we set its height to be same as that of the horizontal empty box. Its width is then determined by dividing its area by the height. Using the dimensions calculated above, the group is finally placed in the horizontal empty space box aligned with the empty box's left side. For example, in Figure 1, step (ii) has a horizontal empty box labeled H1. The result of placing a group, G2, in H1 is shown in step (iii) creating a new smaller H1 in (iii). It is easy to see that G2 and H1 of step (ii) have same heights and they have a common left edge. Similarly, while placing a group in a vertical free box, we set its width to be same as that of the empty box and its height is determined using its width and area. The group and the vertical empty box share the top edges of the empty box. See placement of G4 in V1 in steps (iv) and (v) of Figure 1 for an example. After placing G1, we place the next group, G2, in H1; followed by G3 in H2, G4 in V1 and G5 in V2 (steps (ii) to (vi)). Step (vi) shows that we have G6 and G7 left. So starting again at H1, we place G6 in H1 (step(vii)). We then try to place G7 in H2, but H2 had no space left. So, we move on to V1 and place G7 there (step (viii)). This ends the algorithm as there aren't any more groups left to be placed at step (viii). The method proposed above is not space filling which might result in a situation where the algorithm still has some groups to place on the screen but none of the empty boxes are big enough. In such a situation, we restart the algorithm with alpha=0.9*previous alpha and repeat this process until all the groups get placed on the screen. A detailed algorithm for the proposed method is shown in Figure \ref{}. 3.2) U Layout Figure 2 shows an example of the U layout. The groups sorted in decreasing order of connectedness and their areas are shown in the table on the left in the figure. The algorithm is similar to Donut layout. The only difference is that the first group, G1, gets placed at the core of the U resulting in one horizontal and two vertical empty boxes instead of two each namely H2, V1 and V2 (step (ii) of the figure). The remaining groups are placed around G1 in alternating in the sequence H2, V1 and V2 (Steps (iii) to (viii)). In the following sections, we will explain the implementation of our method and then compare our method with the GIB meta-layout

4 4) IMPLEMENTATION The meta-layout presented above was implemented in NodeXL using C#. NodeXL is an open-source network analysis and visualization tool within Excel which allows easy computation of various network analysis metrics such as betweenness centrality, degree, closeness etc. The users can annotate the vertices and edges with these properties or with user-defined labels or images and visualize the results by drawing their graph algorithmically on a 2D screen space. Several layout algorithms such as the Fruchterman- Reingold and Harel-Koren, circular, spiral etc are currently being offered by NodeXL. For example, the graph in the background towards the right side in Figure 3 has been drawn using the Fruchterman-Reingold layout and the vertices are sized by betweenness centrality. Another relevant feature supported by NodeXL is the clustering option which clusters the vertices of the graph into smaller groups. NodeXL supports various graph clustering mechanisms such as clustering based on vertex attributes or connected components or using standard graph clustering algorithms. Upon clustering, the vertices, by default, get colored by their group id so that it is easy to identify the vertices belonging to same groups while visualizing them. The background graph in Figure 3 shows vertices colored by cluster id after using the Clauset-Newmann-Moore algorithm while the excel sheet on the left shows the various clusters labeled G1, G2 etc. After clustering, the users can also use GIB to visualize contents of individual groups in greater details. The features briefly described above are a very small part of the huge range of rich functionalities provided by NodeXL. Since NodeXL is a very useful tool for insightful analysis of networks including clustered graphs, we decided to implement our method as an additional meta-layout option like GIB. The dialog box in the screen shot in Figure 3 shows how we provide our method as a layout option (encircled in red). We also provide three options for the style of inter-group edges as shown in the figure. The users can choose to either 'show' all the individual inter-group edges (Figure 4(a)) or 'hide' them completely (Figure 4(b)) or 'combine' those between two groups into one thick edge going from center of one group to another (Figure 4(c)). All the figures (except the simulations Figures 1 and 2) in this report have been generated by NodeXL implementation of our method using the 'combined' inter-group edge option. Figure 1: Example of a Donut layout - 4 -

5 Figure 2: Example of a U layout Figure 3: Screenshot of NodeXL showing the Fitted Rectangle option Figure 4: Screenshot of NodeXL showing the inter-group edge option -5-

6 Figure 5: Comparison of the GIB and FRL (Donut) Layouts - 6 -

7 Figure 6: Comparison of the GIB and FRL (U) Layouts - 7 -

8 5) EVALUATION Nine participants (6 Females, 3 Males) who have at least pursued or are pursuing a masters degree or higher in a technical field were recruited to conduct a usability study. The participants self reported that they have dealt with network data previously, biological or social network data. The experiment followed a within subjects design, where subjects were given a set of tasks and asked to use two layouts, one with the GIB layout, and another with a FRL layout to answer questions. Participants were asked to think-aloud as they completed the tasks. Additionally, half of our participants looked at a dataset that fell under the U- Layout FRL (Figure 6), and the other half of the participants looked at a dataset that produced a Donut (Figure 5). The order of experimental conditions was counterbalanced by alternating the order in which we presented GIB/FRL layouts. Subjects completed the task in their native work environments and were presented the two layouts on a screen, the way in which the layouts would be naturally presented to them, if they were using NodeXL. They were asked to solve a series of tasks and were allowed to complete them in any order they were desired. If they consented, they were recorded as they thought-aloud. The tasks asked users to count the number of outgoing combined edges from a list of groups, to find the group which has the maximum number of adjacent groups, to find the number of groups connected to a list of pair of groups, and to ascertain whether there was an edge between a series of pairs of groups. Following each task, users were asked to rate each layout on a scale from 0 to 9 based on the the layout s usefulness. 5.1) Results Participants rated each of the layouts in terms of usefulness in helping them completing the tasks. Aggregrating the usefulness scores of all of the tasks, the FRL layout (combined Donut and U) received an average score of 6.94/9 (SD=1.47). The GIB layout received an average score of 4.61 (SD=1.59). Ratings by layout are shown in Figures 7 and 8. Figure 7: Average user ratings for the 4 tasks for the GIB and FRL (U) Layouts Each user was asked to answer a series of tasks given two layouts with the same data. These tasks were derived from questions that may arise about a network with regards to the relationship between the various communities in the network. Figure 7: Average user ratings for the 4 tasks for the GIB and FRL (Donut) Layouts Task 1: Given a list of groups, count the number of outgoing combined edges from each of them. The Fitted Rectangle Layout received a score of 6.11/9 on this task (SD=1.90), while the GIB received a score of XX on this task with 5/9 (SD=1.58). The Donut layout outreceived an average usefulness score of 7.2/9 (SD=1.79), while the U-layout received a usefulness score of 4.75/9 (SD=.98). In this particular task, users found the GIB layout to be more useful than U-Layout, with a difference of 2.45 between the two average usefulness scores. Task 2: Find the group with the maximum number of adjacent groups. For this task, users rated both versions of the FRL layout significantly better for than that of the GIB layout. 5 of the 9 users mentioned that because the most connected graph was in the middle center for the FRL layout, their eyes were drawn to it and they new immediately it was the most connected layout, while it was difficult to tell with the GIB, since it was located in the upper left corner. Task 3: Given a list of pairs of groups, count the number of groups connected to each pair. Similarly to task 2, users rated both versions of the FRL layout significantly better for than that of the GIB layout. It was at this point, where users started to voice their annoyance with the overlapping edges in GIB. At this step, 4 out of the 9 users expressed that the GIB made this task difficult due to the overlapping edges. Task 4: Given a list of pairs of groups, indicate if there is an edge between them. Users were relieved that this task received a yes or no response and completed this task more quickly than any of - 8 -

9 the other tasks. For this task, users also rated the FRL layout more highly for both the Donut layout and the U- layout. Fitted Rectangles We tested both versions of the FRL layouts, the donut layout and the U-layout. Collectively on average, the FRL layout was rated higher in usefulness than the GIB layout. With regards to the U-layout, users complained about the thinness of some of the edges and the resulting decrease of their visibility if they overlapped with a thicker edge. Users also made suggestions regarding the colors of the edges, complaining about the default gray-colored edges. Of the 9 users, 3 specifically suggested that a change of color in the intergroup edges would improve the edges visbility. GIB When completing tasks and answering questions with the GIB layout, 6 out of the 9 users complained about it s crowdedness when compared to it s FRL counterpart. One particular user mentioned that FRL was easier to analyze because the groups were more scattered out, even though FRL and GIB were using the same exact area for the entire graph. To this particular user, it appeared that the groups had more space to be scattered. 6) FUTURE WORK AND CONCLUSIONS In this report we have addressed the problem of visualization of inter-group relations in a clustered graph. Our approach is motivated by another successful layout method, Group-In-a-Box and we propose an algorithm to arrange the groups on a 2D screen space so that the overlap among the intergroup edges reduces as compared to the GIB layout. Our user study with 9 subjects indicates that the proposed Fitted Rectangle method is indeed useful in visualizing and studying the inter-group relations in huge complex graphs. However, there were complaints about the thin rectangles which encompassed groups with a small amount of vertices. The FRL meta-layout does not take into consideration the aspect the ratio of groups, and this proves to be particularly visually obvious in groups in which there are few vertices. In a future implementation of the FRL meta-layout, aspect ratio of smaller groups would be considered as well. Additionally, the proposed method is not space-filling. This happens because the area to be occupied by each group is pre-determined and placing the first group at the core of Donut or U segments the screen space leading to an arrangement which might not be optimal. The fixed boundaries of the empty spaces can also contribute to wastage of space. A future implementation would employ a technique in which more space in the graph can be utilized. ACKNOWLEDGEMENTS We thank Cody Dune and Dr. Ben Schneiderman for their valuable feedback throughout this project. REFERENCES 1) Bruls, M.; Huizing, K. and J. Van Wijk, J. Squarified Treemaps. Proc. Joint Eurographics and IEEE TCVG symposium on Visualization, IEEE Press, 2000, DOI: /PASSAT/SocialCom ) Frantz, T. L. and Carley, K. M. Treemaps as a Tool for Social Network Analysis, Technical report number CMU- ISRI , 2005, doi= ) Johnson, B. and Shneiderman, B. Treemaps: A spacefilling approach to the visualization of hierarchical information structures, Proc. 2nd International IEEE Visualization Conference, 1991, ) Rodrigues, E. M.; Milic-Frayling, N.; Smith, M.; Shneiderman, B. and Hansen, D. Group-in-a-Box layout for multi-faceted analysis of communities. SocialCom '11: Proc IEEE 3rd International Conference on Social Computing, 2011, ) Smith, M. A., Shneiderman, B., Milic-Frayling, N., Mendes Rodrigues, E., Barash, V., Dunne, C., Capone, T., Perer, A. and Gleave, E. (2009). Analyzing (social media) networks with NodeXL. Proc. of the 4th International Conference on Communities and Technologies (C&T '09), ) Wakita, K. and Tsurumi, Y. (2007). Finding community structure in mega-scale social networks, Proc. 16th International Conference on World Wide Web,

Fitted Rectangles: A Visualization for Clustered Graphs

Fitted Rectangles: A Visualization for Clustered Graphs Fitted Rectangles: A Visualization for Clustered Graphs Snigdha Chaturvedi Computer Science, University of Maryland snigdhac@cs.umd.edu Zahra Ashktorab Information School, University of Maryland parnia@umd.edu

More information

Edge Equalized Treemaps

Edge Equalized Treemaps Edge Equalized Treemaps Aimi Kobayashi Department of Computer Science University of Tsukuba Ibaraki, Japan kobayashi@iplab.cs.tsukuba.ac.jp Kazuo Misue Faculty of Engineering, Information and Systems University

More information

Ordered Treemap Layouts

Ordered Treemap Layouts Ordered Treemap Layouts Ben Shneiderman Department of Computer Science, Human-Computer Interaction Lab, Insitute for Advanced Computer Studies & Institute for Systems Research University of Maryland ben@cs.umd.edu

More information

Courtesy of Prof. Shixia University

Courtesy of Prof. Shixia University Courtesy of Prof. Shixia Liu @Tsinghua University Introduction Node-Link diagrams Space-Filling representation Hybrid methods Hierarchies often represented as trees Directed, acyclic graph Two main representation

More information

Ordered Treemap Layouts

Ordered Treemap Layouts Proceedings of the IEEE Symposium on Information Visualization 00 (INFOVIS 0) 5-4048/0 $7.00 00 IEEE Ordered Treemap Layouts Ben Shneiderman Department of Computer Science, Human-Computer Interaction Lab,

More information

HYBRID FORCE-DIRECTED AND SPACE-FILLING ALGORITHM FOR EULER DIAGRAM DRAWING. Maki Higashihara Takayuki Itoh Ochanomizu University

HYBRID FORCE-DIRECTED AND SPACE-FILLING ALGORITHM FOR EULER DIAGRAM DRAWING. Maki Higashihara Takayuki Itoh Ochanomizu University HYBRID FORCE-DIRECTED AND SPACE-FILLING ALGORITHM FOR EULER DIAGRAM DRAWING Maki Higashihara Takayuki Itoh Ochanomizu University ABSTRACT Euler diagram drawing is an important problem because we may often

More information

Decimals should be spoken digit by digit eg 0.34 is Zero (or nought) point three four (NOT thirty four).

Decimals should be spoken digit by digit eg 0.34 is Zero (or nought) point three four (NOT thirty four). Numeracy Essentials Section 1 Number Skills Reading and writing numbers All numbers should be written correctly. Most pupils are able to read, write and say numbers up to a thousand, but often have difficulty

More information

How to use the ruler, grid, guides, and the Align panel

How to use the ruler, grid, guides, and the Align panel How to use the ruler, grid, guides, and the Align panel Much of your job as a page designer is to place text and graphics on the page in a pleasing, organized way. Although you can do much of this placing

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

Tracking Handle Menu Lloyd K. Konneker Jan. 29, Abstract

Tracking Handle Menu Lloyd K. Konneker Jan. 29, Abstract Tracking Handle Menu Lloyd K. Konneker Jan. 29, 2011 Abstract A contextual pop-up menu of commands is displayed by an application when a user moves a pointer near an edge of an operand object. The menu

More information

Excel Core Certification

Excel Core Certification Microsoft Office Specialist 2010 Microsoft Excel Core Certification 2010 Lesson 6: Working with Charts Lesson Objectives This lesson introduces you to working with charts. You will look at how to create

More information

Interactive Campaign Planning for Marketing Analysts

Interactive Campaign Planning for Marketing Analysts Interactive Campaign Planning for Marketing Analysts Fan Du University of Maryland College Park, MD, USA fan@cs.umd.edu Sana Malik Adobe Research San Jose, CA, USA sana.malik@adobe.com Eunyee Koh Adobe

More information

Information Visualization. Jing Yang Spring Hierarchy and Tree Visualization

Information Visualization. Jing Yang Spring Hierarchy and Tree Visualization Information Visualization Jing Yang Spring 2008 1 Hierarchy and Tree Visualization 2 1 Hierarchies Definition An ordering of groups in which larger groups encompass sets of smaller groups. Data repository

More information

RINGS : A Technique for Visualizing Large Hierarchies

RINGS : A Technique for Visualizing Large Hierarchies RINGS : A Technique for Visualizing Large Hierarchies Soon Tee Teoh and Kwan-Liu Ma Computer Science Department, University of California, Davis {teoh, ma}@cs.ucdavis.edu Abstract. We present RINGS, a

More information

Improving Stability and Compactness in Street Layout Visualizations

Improving Stability and Compactness in Street Layout Visualizations Vision, Modeling, and Visualization (211) Peter Eisert, Konrad Polthier, and Joachim Hornegger (Eds.) Improving Stability and Compactness in Street Layout Visualizations Julian Kratt & Hendrik Strobelt

More information

Use of GeoGebra in teaching about central tendency and spread variability

Use of GeoGebra in teaching about central tendency and spread variability CREAT. MATH. INFORM. 21 (2012), No. 1, 57-64 Online version at http://creative-mathematics.ubm.ro/ Print Edition: ISSN 1584-286X Online Edition: ISSN 1843-441X Use of GeoGebra in teaching about central

More information

NodeXL for Network analysis. Hands-on at NICAR 2014, Baltimore, Feb 28. Peter

NodeXL for Network analysis. Hands-on at NICAR 2014, Baltimore, Feb 28. Peter NodeXL for Network analysis Hands-on at NICAR 2014, Baltimore, Feb 28 Peter Aldhous peter@peteraldhous.com @paldhous NodeXL is a template for Microsoft Excel 2007 and later, which allows you to run network

More information

Cluster-based Edge Bundling based on a Line Graph

Cluster-based Edge Bundling based on a Line Graph Cluster-based Edge Bundling based on a Line Graph Takafumi Yamashita and Ryosuke Saga Graduate School of Engineering, Department of Computer Science and Intelligent Systems, Osaka Prefecture University,

More information

Sphere Anchored Map: A Visualization Technique for Bipartite Graphs in 3D

Sphere Anchored Map: A Visualization Technique for Bipartite Graphs in 3D Sphere Anchored Map: A Visualization Technique for Bipartite Graphs in 3D Takao Ito, Kazuo Misue and Jiro Tanaka Department of Computer Science, University of Tsukuba, Tennodai, Tsukuba, 305-8577 Ibaraki,

More information

Analyzing (Social Media) Networks with NodeXL

Analyzing (Social Media) Networks with NodeXL Analyzing (Social Media) Networks with NodeXL Marc A. Smith 1, Ben Shneiderman 2, Natasa Milic-Frayling 3, Eduarda Mendes Rodrigues 3, Vladimir Barash 4, Cody Dunne 2, Tony Capone 5, Adam Perer 2, Eric

More information

T. Biedl and B. Genc. 1 Introduction

T. Biedl and B. Genc. 1 Introduction Complexity of Octagonal and Rectangular Cartograms T. Biedl and B. Genc 1 Introduction A cartogram is a type of map used to visualize data. In a map regions are displayed in their true shapes and with

More information

Ordered and Quantum Treemaps: Making Effective Use of 2D Space to Display Hierarchies

Ordered and Quantum Treemaps: Making Effective Use of 2D Space to Display Hierarchies Ordered and Quantum Treemaps: Making Effective Use of 2D Space to Display Hierarchies Benjamin B. Bederson Department of Computer Science Human-Computer Interaction Laboratory Insitute for Advanced Computer

More information

INFO 424, UW ischool 11/1/2007

INFO 424, UW ischool 11/1/2007 Today s Lecture Trees and Networks Thursday 1 Nov 2007 Polle Zellweger Goals of tree & network visualization View structure & connectivity, node properties Challenges of trees & networks size, structure,

More information

Frequency Distributions

Frequency Distributions Displaying Data Frequency Distributions After collecting data, the first task for a researcher is to organize and summarize the data so that it is possible to get a general overview of the results. Remember,

More information

Mathematics Background

Mathematics Background Finding Area and Distance Students work in this Unit develops a fundamentally important relationship connecting geometry and algebra: the Pythagorean Theorem. The presentation of ideas in the Unit reflects

More information

Tutorial - FactoryPLAN

Tutorial - FactoryPLAN Tutorial - FactoryPLAN Tutorial - FactoryPLAN In the FactoryPLAN tutorial, you will use FactoryPLAN to plan the layout for a manufacturing area. You will create all the necessary files using the actual

More information

i-vis Information Visualization Research Group

i-vis Information Visualization Research Group version 1.0 BILKENT UNIVERSITY i-vis Information Visualization Research Group Chisio User s Guide B I L K E N T I - V I S R E S E A R C H G R O U P Chisio User s Guide i-vis Research Group Computer Engineering

More information

What s New in Spotfire DXP 1.1. Spotfire Product Management January 2007

What s New in Spotfire DXP 1.1. Spotfire Product Management January 2007 What s New in Spotfire DXP 1.1 Spotfire Product Management January 2007 Spotfire DXP Version 1.1 This document highlights the new capabilities planned for release in version 1.1 of Spotfire DXP. In this

More information

TreemapBar: Visualizing Additional Dimensions of Data in Bar Chart

TreemapBar: Visualizing Additional Dimensions of Data in Bar Chart 2009 13th International Conference Information Visualisation TreemapBar: Visualizing Additional Dimensions of Data in Bar Chart Mao Lin Huang 1, Tze-Haw Huang 1 and Jiawan Zhang 2 1 Faculty of Engineering

More information

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 Quick Summary A workbook an Excel document that stores data contains one or more pages called a worksheet. A worksheet or spreadsheet is stored in a workbook, and

More information

MS Publisher County of Henrico Public Libraries

MS Publisher County of Henrico Public Libraries MS Publisher 2013 I. About Publisher A. What is it? Publisher is a desktop publishing program that assists you in designing and producing professional documents that combine text, graphics, illustrations,

More information

INFS 2150 Introduction to Web Development

INFS 2150 Introduction to Web Development Objectives INFS 2150 Introduction to Web Development 3. Page Layout Design Create a reset style sheet Explore page layout designs Center a block element Create a floating element Clear a floating layout

More information

INFS 2150 Introduction to Web Development

INFS 2150 Introduction to Web Development INFS 2150 Introduction to Web Development 3. Page Layout Design Objectives Create a reset style sheet Explore page layout designs Center a block element Create a floating element Clear a floating layout

More information

Leveraging Transitive Relations for Crowdsourced Joins*

Leveraging Transitive Relations for Crowdsourced Joins* Leveraging Transitive Relations for Crowdsourced Joins* Jiannan Wang #, Guoliang Li #, Tim Kraska, Michael J. Franklin, Jianhua Feng # # Department of Computer Science, Tsinghua University, Brown University,

More information

Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static

Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static Table of Contents Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static Series Chart with Dynamic Series Master-Detail

More information

SRD User Manual. Table of contents: Overview

SRD User Manual. Table of contents: Overview SRD User Manual Table of contents: 1. Overview 2. First use of SRD 3. The Sequence Information Script File format 4. The Sequence Links Script File format 5. Import new data to visualize 6. Intra-category

More information

Section 2-2 Frequency Distributions. Copyright 2010, 2007, 2004 Pearson Education, Inc

Section 2-2 Frequency Distributions. Copyright 2010, 2007, 2004 Pearson Education, Inc Section 2-2 Frequency Distributions Copyright 2010, 2007, 2004 Pearson Education, Inc. 2.1-1 Frequency Distribution Frequency Distribution (or Frequency Table) It shows how a data set is partitioned among

More information

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

Design Principles. Advanced Higher Graphic Presentation. Professional Graphic Presentations by kind permission of Design Principles Advanced Higher Graphic Presentation Professional Graphic Presentations by kind permission of Design Principles:- Balance Balance in Composition Three different types of balance :- *

More information

A Java Execution Simulator

A Java Execution Simulator A Java Execution Simulator Steven Robbins Department of Computer Science University of Texas at San Antonio srobbins@cs.utsa.edu ABSTRACT This paper describes JES, a Java Execution Simulator that allows

More information

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

More information

Guide to WB Annotations

Guide to WB Annotations Guide to WB Annotations 04 May 2016 Annotations are a powerful new feature added to Workbench v1.2.0 (Released May 2016) for placing text and symbols within wb_view tabs and windows. They enable generation

More information

Math 7 Glossary Terms

Math 7 Glossary Terms Math 7 Glossary Terms Absolute Value Absolute value is the distance, or number of units, a number is from zero. Distance is always a positive value; therefore, absolute value is always a positive value.

More information

Visual Layout of Graph-Like Models

Visual Layout of Graph-Like Models Visual Layout of Graph-Like Models Tarek Sharbak MhdTarek.Sharbak@uantwerpen.be Abstract The modeling of complex software systems has been growing significantly in the last years, and it is proving to

More information

Adobe InDesign CS6 Tutorial

Adobe InDesign CS6 Tutorial Adobe InDesign CS6 Tutorial Adobe InDesign CS6 is a page-layout software that takes print publishing and page design beyond current boundaries. InDesign is a desktop publishing program that incorporates

More information

Generating Annotations for How-to Videos Using Crowdsourcing

Generating Annotations for How-to Videos Using Crowdsourcing Generating Annotations for How-to Videos Using Crowdsourcing Phu Nguyen MIT CSAIL 32 Vassar St. Cambridge, MA 02139 phun@mit.edu Abstract How-to videos can be valuable teaching tools for users, but searching

More information

Organisation and Presentation of Data in Medical Research Dr K Saji.MD(Hom)

Organisation and Presentation of Data in Medical Research Dr K Saji.MD(Hom) Organisation and Presentation of Data in Medical Research Dr K Saji.MD(Hom) Any data collected by a research or reference also known as raw data are always in an unorganized form and need to be organized

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

6 TOOLS FOR A COMPLETE MARKETING WORKFLOW

6 TOOLS FOR A COMPLETE MARKETING WORKFLOW 6 S FOR A COMPLETE MARKETING WORKFLOW 01 6 S FOR A COMPLETE MARKETING WORKFLOW FROM ALEXA DIFFICULTY DIFFICULTY MATRIX OVERLAP 6 S FOR A COMPLETE MARKETING WORKFLOW 02 INTRODUCTION Marketers use countless

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

PAGE LAYOUT IN GRAPHIC DESIGN Where do you start when you want to create an attractive and effective design?

PAGE LAYOUT IN GRAPHIC DESIGN Where do you start when you want to create an attractive and effective design? PAGE LAYOUT IN GRAPHIC DESIGN Where do you start when you want to create an attractive and effective design? Aims & Outcomes for this week: Aims: To understand the three main page layout conventions used

More information

Data Partitioning. Figure 1-31: Communication Topologies. Regular Partitions

Data Partitioning. Figure 1-31: Communication Topologies. Regular Partitions Data In single-program multiple-data (SPMD) parallel programs, global data is partitioned, with a portion of the data assigned to each processing node. Issues relevant to choosing a partitioning strategy

More information

Comparing the Usability of RoboFlag Interface Alternatives*

Comparing the Usability of RoboFlag Interface Alternatives* Comparing the Usability of RoboFlag Interface Alternatives* Sangeeta Shankar, Yi Jin, Li Su, Julie A. Adams, and Robert Bodenheimer Department of Electrical Engineering and Computer Science Vanderbilt

More information

Train schedule diagram drawing algorithm considering interrelationship between labels

Train schedule diagram drawing algorithm considering interrelationship between labels Train schedule diagram drawing algorithm considering interrelationship between labels H. Izumi', N. Tomii',2 The University of Electro-Communications, Japan. 2Railway Technical Research Institute, Japan.

More information

Faculty Development Seminar Series Constructing Posters in PowerPoint 2003 Using a Template

Faculty Development Seminar Series Constructing Posters in PowerPoint 2003 Using a Template 2008-2009 Faculty Development Seminar Series Constructing Posters in PowerPoint 2003 Using a Template Office of Medical Education Research and Development Michigan State University College of Human Medicine

More information

Chapter 2. Frequency distribution. Summarizing and Graphing Data

Chapter 2. Frequency distribution. Summarizing and Graphing Data Frequency distribution Chapter 2 Summarizing and Graphing Data Shows how data are partitioned among several categories (or classes) by listing the categories along with the number (frequency) of data values

More information

Lecture Slides. Elementary Statistics Twelfth Edition. by Mario F. Triola. and the Triola Statistics Series. Section 2.1- #

Lecture Slides. Elementary Statistics Twelfth Edition. by Mario F. Triola. and the Triola Statistics Series. Section 2.1- # Lecture Slides Elementary Statistics Twelfth Edition and the Triola Statistics Series by Mario F. Triola Chapter 2 Summarizing and Graphing Data 2-1 Review and Preview 2-2 Frequency Distributions 2-3 Histograms

More information

Prepare a stem-and-leaf graph for the following data. In your final display, you should arrange the leaves for each stem in increasing order.

Prepare a stem-and-leaf graph for the following data. In your final display, you should arrange the leaves for each stem in increasing order. Chapter 2 2.1 Descriptive Statistics A stem-and-leaf graph, also called a stemplot, allows for a nice overview of quantitative data without losing information on individual observations. It can be a good

More information

Adobe Flash CS3 Reference Flash CS3 Application Window

Adobe Flash CS3 Reference Flash CS3 Application Window Adobe Flash CS3 Reference Flash CS3 Application Window When you load up Flash CS3 and choose to create a new Flash document, the application window should look something like the screenshot below. Layers

More information

Ordered and Quantum Treemaps: Making Effective Use of 2D Space to Display Hierarchies

Ordered and Quantum Treemaps: Making Effective Use of 2D Space to Display Hierarchies Ordered and Quantum Treemaps: Making Effective Use of 2D Space to Display Hierarchies BENJAMIN B. BEDERSON and BEN SHNEIDERMAN University of Maryland and MARTIN WATTENBERG IBM Research Treemaps, a space-filling

More information

Excel 2007 New Features Table of Contents

Excel 2007 New Features Table of Contents Table of Contents Excel 2007 New Interface... 1 Quick Access Toolbar... 1 Minimizing the Ribbon... 1 The Office Button... 2 Format as Table Filters and Sorting... 2 Table Tools... 4 Filtering Data... 4

More information

Math 170, Section 002 Spring 2012 Practice Exam 2 with Solutions

Math 170, Section 002 Spring 2012 Practice Exam 2 with Solutions Math 170, Section 002 Spring 2012 Practice Exam 2 with Solutions Contents 1 Problems 2 2 Solution key 10 3 Solutions 11 1 1 Problems Question 1: A right triangle has hypothenuse of length 25 in and an

More information

An Occlusion-Reduced 3D Hierarchical Data Visualization Technique

An Occlusion-Reduced 3D Hierarchical Data Visualization Technique An Occlusion-Reduced 3D Hierarchical Data Visualization Technique Reiko Miyazaki, Takayuki Itoh Ochanomizu University {reiko, itot}@itolab.is.ocha.ac.jp Abstract Occlusion is an important problem to be

More information

Area and Perimeter EXPERIMENT. How are the area and perimeter of a rectangle related? You probably know the formulas by heart:

Area and Perimeter EXPERIMENT. How are the area and perimeter of a rectangle related? You probably know the formulas by heart: Area and Perimeter How are the area and perimeter of a rectangle related? You probably know the formulas by heart: Area Length Width Perimeter (Length Width) But if you look at data for many different

More information

Visualising Solid Shapes

Visualising Solid Shapes VISUALISING SOLID SHAPES 2 7 7 Visualising Solid Shapes Chapter 15 15.1 INTRODUCTION: PLANE FIGURES AND SOLID SHAPES In this chapter, you will classify figures you have seen in terms of what is known as

More information

Grade 7/8 Math Circles Fall Nov.4/5 The Pythagorean Theorem

Grade 7/8 Math Circles Fall Nov.4/5 The Pythagorean Theorem 1 Faculty of Mathematics Waterloo, Ontario Centre for Education in Mathematics and Computing Grade 7/8 Math Circles Fall 2014 - Nov.4/5 The Pythagorean Theorem Introduction A right triangle is any triangle

More information

New Perspectives on Microsoft Excel Module 5: Working with Excel Tables, PivotTables, and PivotCharts

New Perspectives on Microsoft Excel Module 5: Working with Excel Tables, PivotTables, and PivotCharts New Perspectives on Microsoft Excel 2016 Module 5: Working with Excel Tables, PivotTables, and PivotCharts Objectives, Part 1 Explore a structured range of data Freeze rows and columns Plan and create

More information

Lesson 00 of 36 Learning about Excel Projectable

Lesson 00 of 36 Learning about Excel Projectable Lesson 00 of 6 Learning about Excel Projectable Lesson 5 of 5 Dividing a one-digit divisor into a three-digit dividend with a two-digit quotient with regrouping and remainders CLASSROOM LESSONS Each file

More information

3. Multidimensional Information Visualization II Concepts for visualizing univariate to hypervariate data

3. Multidimensional Information Visualization II Concepts for visualizing univariate to hypervariate data 3. Multidimensional Information Visualization II Concepts for visualizing univariate to hypervariate data Vorlesung Informationsvisualisierung Prof. Dr. Andreas Butz, WS 2009/10 Konzept und Basis für n:

More information

Using Syracuse Community Geography s MapSyracuse

Using Syracuse Community Geography s MapSyracuse Using Syracuse Community Geography s MapSyracuse MapSyracuse allows the user to create custom maps with the data provided by Syracuse Community Geography. Starting with the basic template provided, you

More information

Hexa Meshing. Defining Surface Parameters for the Mesh Defining Edge Parameters to Adjust the Mesh Checking mesh quality for determinants and angle

Hexa Meshing. Defining Surface Parameters for the Mesh Defining Edge Parameters to Adjust the Mesh Checking mesh quality for determinants and angle 4.2.6: Pipe Blade Overview This tutorial example uses the Collapse function to create a degenerate topology in a Conjugate Heat transfer problem around a blade located in the center of a cylindrical pipe.

More information

Learning-based Neuroimage Registration

Learning-based Neuroimage Registration Learning-based Neuroimage Registration Leonid Teverovskiy and Yanxi Liu 1 October 2004 CMU-CALD-04-108, CMU-RI-TR-04-59 School of Computer Science Carnegie Mellon University Pittsburgh, PA 15213 Abstract

More information

Information Technology and Media Services. Office Excel. Charts

Information Technology and Media Services. Office Excel. Charts Information Technology and Media Services Office 2010 Excel Charts August 2014 Information Technology and Media Services CONTENTS INTRODUCTION... 1 CHART TYPES... 3 CHOOSING A CHART... 4 CREATING A COLUMN

More information

Light and the Properties of Reflection & Refraction

Light and the Properties of Reflection & Refraction Light and the Properties of Reflection & Refraction OBJECTIVE To study the imaging properties of a plane mirror. To prove the law of reflection from the previous imaging study. To study the refraction

More information

Network community detection with edge classifiers trained on LFR graphs

Network community detection with edge classifiers trained on LFR graphs Network community detection with edge classifiers trained on LFR graphs Twan van Laarhoven and Elena Marchiori Department of Computer Science, Radboud University Nijmegen, The Netherlands Abstract. Graphs

More information

Addition and Subtraction

Addition and Subtraction PART Looking Back At: Grade Number and Operations 89 Geometry 9 Fractions 94 Measurement 9 Data 9 Number and Operations 96 Geometry 00 Fractions 0 Measurement 02 Data 0 Looking Forward To: Grade Number

More information

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts Microsoft Excel 2013 Enhanced Objectives Explore a structured range of data Freeze rows and columns Plan and create an Excel table Rename

More information

Today s Hall of Fame and Shame is a comparison of two generations of Google Advanced Search. This is the old interface.

Today s Hall of Fame and Shame is a comparison of two generations of Google Advanced Search. This is the old interface. 1 Today s Hall of Fame and Shame is a comparison of two generations of Google Advanced Search. This is the old interface. 2 And this is the new interface. (If you can t read the image, go to http://www.google.com/advanced_search.)

More information

Table of Contents (As covered from textbook)

Table of Contents (As covered from textbook) Table of Contents (As covered from textbook) Ch 1 Data and Decisions Ch 2 Displaying and Describing Categorical Data Ch 3 Displaying and Describing Quantitative Data Ch 4 Correlation and Linear Regression

More information

Chapter 4. Clustering Core Atoms by Location

Chapter 4. Clustering Core Atoms by Location Chapter 4. Clustering Core Atoms by Location In this chapter, a process for sampling core atoms in space is developed, so that the analytic techniques in section 3C can be applied to local collections

More information

The technique of structuring social network graphs for visual analysis of user groups to counter inappropriate, dubious and harmful information

The technique of structuring social network graphs for visual analysis of user groups to counter inappropriate, dubious and harmful information The technique of structuring social network graphs for visual analysis of user groups to counter inappropriate, dubious and harmful information M Kalameyets 1, A Chechulin 1 and I Kotenko 1,2 1 Laboratory

More information

mirnet Tutorial Starting with expression data

mirnet Tutorial Starting with expression data mirnet Tutorial Starting with expression data Computer and Browser Requirements A modern web browser with Java Script enabled Chrome, Safari, Firefox, and Internet Explorer 9+ For best performance and

More information

Tips and Techniques for Designing the Perfect Layout with SAS Visual Analytics

Tips and Techniques for Designing the Perfect Layout with SAS Visual Analytics SAS2166-2018 Tips and Techniques for Designing the Perfect Layout with SAS Visual Analytics Ryan Norris and Brian Young, SAS Institute Inc., Cary, NC ABSTRACT Do you want to create better reports but find

More information

Adobe PageMaker Tutorial

Adobe PageMaker Tutorial Tutorial Introduction This tutorial is designed to give you a basic understanding of Adobe PageMaker. The handout is designed for first-time users and will cover a few important basics. PageMaker is a

More information

HOUR 12. Adding a Chart

HOUR 12. Adding a Chart HOUR 12 Adding a Chart The highlights of this hour are as follows: Reasons for using a chart The chart elements The chart types How to create charts with the Chart Wizard How to work with charts How to

More information

Supporting both Exploratory Design and Power of Action with a New Property Sheet

Supporting both Exploratory Design and Power of Action with a New Property Sheet Raphaël Hoarau Université de Toulouse ENAC - IRIT/ICS 7, rue Edouard Belin Toulouse, 31055 France raphael.hoarau@enac.fr Stéphane Conversy Université de Toulouse ENAC - IRIT/ICS 7, rue Edouard Belin Toulouse,

More information

How to create a prototype

How to create a prototype Adobe Fireworks Guide How to create a prototype In this guide, you learn how to use Fireworks to combine a design comp and a wireframe to create an interactive prototype for a widget. A prototype is a

More information

10 Connector Designer

10 Connector Designer PRELIMINARY Connector Designer 10-1 10 Connector Designer About this Section In this section you will learn how to create your own custom connectors and edit them using the optional software connector

More information

South Dakota Department of Transportation January 10, 2014

South Dakota Department of Transportation January 10, 2014 South Dakota Department of Transportation January 10, 2014 USER GUIDE FOR ELECTRONIC PLANS REVIEW AND PDF DOCUMENT REQUIREMENTS FOR CONSULTANTS Contents Page(s) What Is A Shared Electronic Plan Review

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

Chapter 2 - Graphical Summaries of Data

Chapter 2 - Graphical Summaries of Data Chapter 2 - Graphical Summaries of Data Data recorded in the sequence in which they are collected and before they are processed or ranked are called raw data. Raw data is often difficult to make sense

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

Pocket PhotoMesa: A Zoomable Image Browser for PDAs

Pocket PhotoMesa: A Zoomable Image Browser for PDAs Pocket PhotoMesa: A Zoomable Image Browser for PDAs Amir Khella Human-Computer Interaction Lab Institute for Advanced Computer Studies, Computer Science Department University of Maryland, College Park,

More information

An Automatic Hole Filling Method of Point Cloud for 3D Scanning

An Automatic Hole Filling Method of Point Cloud for 3D Scanning An Automatic Hole Filling Method of Point Cloud for 3D Scanning Yuta MURAKI Osaka Institute of Technology Osaka, Japan yuta.muraki@oit.ac.jp Koji NISHIO Osaka Institute of Technology Osaka, Japan koji.a.nishio@oit.ac.jp

More information

OX Documents Release v Feature Overview

OX Documents Release v Feature Overview OX Documents Release v7.8.4 Feature Overview 1 Objective of this Document... 3 1.1 The Purpose of this Document... 3 2 General Improvements... 4 2.1 Security First: Working with Encrypted Files (OX Guard)...

More information

v Map Module Operations SMS Tutorials Prerequisites Requirements Time Objectives

v Map Module Operations SMS Tutorials Prerequisites Requirements Time Objectives v. 12.3 SMS 12.3 Tutorial Objectives This tutorial describes the fundamental tools in the Map module of the SMS. This tutorial provides information that is useful when constructing any type of geometric

More information

Topic: 1-One to Five

Topic: 1-One to Five Mathematics Curriculum Kindergarten Suggested Blocks of Instruction: 12 days /September Topic: 1-One to Five Know number names and the count sequence. K.CC.3. Write numbers from 0 to 20. Represent a number

More information

Student Instruction Sheet: Unit 4, Lesson 1. Similar Triangles

Student Instruction Sheet: Unit 4, Lesson 1. Similar Triangles Student Instruction Sheet: Unit 4, Lesson 1 Similar Triangles Suggested Time: 75 minutes What s important in this lesson: In this lesson, you will learn how to solve similar triangles. omplete the following

More information

Chapter 6 Formatting Graphic Objects

Chapter 6 Formatting Graphic Objects Impress Guide Chapter 6 OpenOffice.org Copyright This document is Copyright 2007 by its contributors as listed in the section titled Authors. You can distribute it and/or modify it under the terms of either

More information

Working with Plan Production ObjectsChapter1:

Working with Plan Production ObjectsChapter1: Chapter 1 Working with Plan Production ObjectsChapter1: The lessons in this chapter guide you through the processes of creating and working with plan production objects. Plan production objects include

More information

Topic: 1-Understanding Addition

Topic: 1-Understanding Addition 10 days /September /October Topic: 1-Understanding Addition Represent and solve problems involving addition and subtraction. 1.OA.1. Use addition and subtraction within 20 to solve word problems involving

More information