Sébastien Heymann

Size: px
Start display at page:

Download "Sébastien Heymann <seb@gephi.org>"

Transcription

1 Sébastien Heymann

2

3 Exploratory Network Analysis 1 see the network 1st graph viz tool: Pajek (1996) Vladimir Batagelj, Andrej Mrvar 2 interact in real time Gephi prototype (2008) group, filter, compute metrics... 3 build a visual language size by rank, color by partition, label, curved edges, thickness...

4 Looking for Orderness in Data Make varying 3 cursors simultaneously to extract meaningful patterns (statistical and structural properties) MICRO level MACRO level at different levels 1 dimension N dimensions on multiple dimensions T+0 T+N at time scale

5 Zoom cursor on Quantitative Data MICRO level MACRO level Global - connectivity - density - centralization Local - communities - bridges between communities - local centers vs periphery Individual - centrality - distances - neighborhood - location - local authority vs hub

6 Crossing cursor on Qualitative Data 1 dimension N dimensions Social - who with whom - communities - brokerage - influence and power - homophily Semantic - topics - thematic clusters Geographic - spatial phenomena

7 Timeline cursor on Temporal Data T+0 T+N Evolution of social ties Evolution of communities Evolution of topics

8 Mapping an Innovation Center Collaborations on projects at Images et Réseaux Themes and content Actors Territory Franck Ghitalla & Ecole de Design de Nantes

9 Gephi in a Nutshell «Like Photoshop for graphs.» Helps data analysts to reveal patterns and trends, highlight outliers and tells story with their data. Network visualization platform Open source, supported by a community Built for performance and usability Extensible by plug-ins Windows, MacOS X, Linux

10 Gephi Community Nonprofit organization Communities Contributors Mathieu Bastian, Mathieu Jacomy, Eduardo Ramos Ibañez, Sébastien Heymann, Guillaume Ceccarelli, André Panisson, Antonio Patriarca, Cezary Bartosiak, Martin Škurla, Patrick McSweeney, Yi Du, Hélder Suzuki, Daniel Bernardes, Ernesto Aneiro, Keheliya Gallaba, Luiz Ribeiro, Urban Škudnik, Vojtech Bardiovsky, Yudi Xue

11 Community Mission Provide a sustainable software Maintain the technical ecosystem Build a business ecosystem Face cutting-edge technological challenges with a long-term vision Distribute the software in Open Source

12 Community Values Open innovation: ideas and features come from the entire community. Decisions are taken with transparency. We consider this technology as a public good, and will keep it in open source.

13 Diversity of Usages business leisure :-) communication academic art

14 Diversity of Network Encoding V = { a, b, c, d, e } E = { (a,b), (a,d), (b,c), (e,a), (c,e) } Textual a b c d e a b c d e Tabular Graphical <graph> <nodes> <node id= a /> <node id= b /> <node id= c /> <node id= d /> <node id= e /> </nodes> <edges> <edge source= a target= b /> <edge source= a target= d /> <edge source= b target= c /> <edge source= e target= a /> <edge source= c target= e /> </edges> </graph> XML and many others...

15 Software I/O MySQL PostgreSL SQL Server Neo4j databases user input file } > Excel Spreadsheet CSV Pajek NET Guess GDF GEXF GraphML Graphviz DOT UCInet DL NetdrawVNA Tulip TLP CSV Pajek NET Guess GDF GEXF GraphML file Excel Spreadsheet SVG PDF PNG graph streaming

16 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Gephi et la dynamique des graphes de terrain : technologie et applications Sébastien Heymann ISCN Journée Réseaux Dynamiques 24 mai 2012

17 Concepts

18 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Notions de dynamique En général, les logiciels implémentent la notion de snapshot : l état du graphe à différents instants. Exemple : Stanford SoNIA (Skye Bender-deMoll and McFarland, Daniel A. (2006) The Art and Science of Dynamic Network Visualization. Journal of Social Structure. Volume 7, Number 2) Sébastien Heymann Gephi Dynamics 24 mai /24

19 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Notions de dynamique dans Gephi pas de notion de snapshot mais durée de vie des nœuds, liens et attributs (repris de SoNIA) Sébastien Heymann Gephi Dynamics 24 mai /24

20 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Intervalle temporel Sébastien Heymann Gephi Dynamics 24 mai /24

21 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Fenêtre glissante TICKS WINDOW TIME TIMELINE INTERVAL TICKS WINDOW TIME TIMELINE INTERVAL Sébastien Heymann Gephi Dynamics 24 mai /24

22 Technologie

23 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Gephi : architecture modulaire Distribution : application stand-alone ou lib Java (Gephi Toolkit) Sébastien Heymann Gephi Dynamics 24 mai /24

24 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Netbeans Platform The NetBeans Platform is a generic framework for Swing applications. It provides the plumbing that, before, every developer had to write themselves Sébastien Heymann Gephi Dynamics 24 mai /24

25 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Gephi : modules Sébastien Heymann Gephi Dynamics 24 mai /24

26 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Dynamic API API dedicated to dynamic network states and events. Browsing dynamic networks uses the Timeline component and defines a visible interval (i.e. a sub-graph). This API is responsible for holding and modifying that value. Retrieve/Set the current visible interval Get the current time format (date, double, datetime) Create DynamicGraph, a utility class to apply a sliding window on a dynamic graph. Sébastien Heymann Gephi Dynamics 24 mai /24

27 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Statistiques dynamiques sélection de la taille de fenêtre temporelle sélection du pas de progression # nœuds, # liens, degré, coefficient de clustering Sébastien Heymann Gephi Dynamics 24 mai /24

28 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Timeline Sébastien Heymann Gephi Dynamics 24 mai /24

29 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Animation de la Timeline Sébastien Heymann Gephi Dynamics 24 mai /24

30 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Sparklines et intervalles de présence pour les attributs dynamiques Présence, couleur et taille des éléments mis à jour en temps réel dans la visualisation. Sébastien Heymann Gephi Dynamics 24 mai /24

31 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Import de données Feuille Excel avec colonnes start et end Base de données avec colonnes start et end Fichier de graphe au format GEXF Flux d événements via Graph Streaming API Sébastien Heymann Gephi Dynamics 24 mai /24

32 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 GEXF GEXF est un format XML Standard porté par Gephi Spécifications commencées en 2007, version stable Dec Topologie, attributs, hiérarchie, phylogénie, dynamique (intervalle ouvert/fermé, périodes) Extensible via des namespaces Sébastien Heymann Gephi Dynamics 24 mai /24

33 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Flux d événements Repris de GraphStream (interopérabilité?) + format JSON : an : Add node cn : Change node dn : Delete node ae : Add edge ce : Change edge de : Delete edge Exemple : add node A { an :{ A :{ label : Streaming Node A, size :2}}} Sébastien Heymann Gephi Dynamics 24 mai /24

34 Démo de Gephi Réseau de contact à Hypertext 2009 durée 2,5 jours Source : Sociopatterns.org

35 Applications

36 c n r s - u p m c l a b o r a t o i r e d i n f o r m a t i q u e d e p a r i s 6 Applications Exploration de la blogosphère Réseaux de contact (SocioPatterns.org/datasets) Fouille de documents (Quid, Inc.) Visualisation de Twitter (RT or #, e.g. the Royal Wedding) Crawl temps réel Autres (e.g. iso-octane dynamic selection, source code evolution) Sébastien Heymann Gephi Dynamics 24 mai /24

37 cnrs - upmc laboratoire d informatique de paris 6 Face-to-face contacts Projet SocioPatterns.org (avec Alain Barrat, Ciro Cattuto...) J. Stehle et al. High-Resolution Measurements of Face-to-Face Contact Patterns in a Primary School. PLoS ONE 6(8) : e23176 Network of contacts aggregated over the first day. Se bastien Heymann Gephi Dynamics 24 mai /24

38 Questions?

39 Merci!

Gephi Tutorial Quick Start

Gephi Tutorial Quick Start Gephi Tutorial Welcome to this introduction tutorial. It will guide you to the basic steps of network visualization and manipulation in Gephi. Gephi version 0.7alpha2 was used to do this tutorial. Get

More information

Exploratory Facebook Social Network Analysis

Exploratory Facebook Social Network Analysis Exploratory Facebook Social Network Analysis with Gephi Thomas Plotkowiak twitterresearcher.wordpress.com Process 1. Import Data with Netviz 2. Gephi 1. Open 2. Layout 3. Ranking (Degree) 4. Statistics

More information

A Tutorial on dynamic networks. By Clement Levallois, Erasmus University Rotterdam

A Tutorial on dynamic networks. By Clement Levallois, Erasmus University Rotterdam A Tutorial on dynamic networks By, Erasmus University Rotterdam V 1.0-2013 Bio notes Education in economics, management, history of science (Ph.D.) Since 2008, turned to digital methods for research. data

More information

A comparative study of social network analysis tools

A comparative study of social network analysis tools Membre de Membre de A comparative study of social network analysis tools David Combe, Christine Largeron, Előd Egyed-Zsigmond and Mathias Géry International Workshop on Web Intelligence and Virtual Enterprises

More information

Visual Analysis of Complex Networks for Business Intelligence with Gephi

Visual Analysis of Complex Networks for Business Intelligence with Gephi Visual Analysis of Complex Networks for Business Intelligence with Gephi Sébastien Heymann, Bénédicte Le Grand LIP6 - CNRS - Université Pierre et Marie Curie, CRI - Université Paris 1 Panthéon Sorbonne

More information

-Duplication of Time-Varying Graphs

-Duplication of Time-Varying Graphs -Duplication of Time-Varying Graphs François Queyroi Sorbonne Universités, UPMC Univ Paris 06, UMR 7606, LIP6, F-75005, Paris CNRS, UMR 7606, LIP6, F-75005, Paris, France francois.queyroi@lip6.fr ABSTRACT.

More information

Université Pierre et Marie Curie, LIP6, ComplexNetworks team. 4 place Jussieu, 75005 Paris, France. Phone: +33 (0)1 44 27 88 88

Université Pierre et Marie Curie, LIP6, ComplexNetworks team. 4 place Jussieu, 75005 Paris, France. Phone: +33 (0)1 44 27 88 88 Title: Name: Affil./Addr.: Gephi Sébastien Heymann Université Pierre et Marie Curie, LIP6, ComplexNetworks team 4 place Jussieu, 75005 Paris, France Phone: +33 (0)1 44 27 88 88 E-mail: sebastien.heymann@lip6.fr

More information

An overview of Software Applications for Social Network Analysis

An overview of Software Applications for Social Network Analysis IRSR INTERNATIONAL REVIEW of SOCIAL RESEARCH Volume 3, Issue 3, October 2013, 71-77 International Review of Social Research An overview of Software Applications for Social Network Analysis Ioana-Alexandra

More information

JustClust User Manual

JustClust User Manual JustClust User Manual Contents 1. Installing JustClust 2. Running JustClust 3. Basic Usage of JustClust 3.1. Creating a Network 3.2. Clustering a Network 3.3. Applying a Layout 3.4. Saving and Loading

More information

Network VisualizationS

Network VisualizationS Network VisualizationS When do they make sense? Where to start? Clement Levallois, Assist. Prof. EMLYON Business School v. 1.1, January 2014 Bio notes Education in economics, management, history of science

More information

JANVIER 2013 / CATALOGUE DES FORMATIONS

JANVIER 2013 / CATALOGUE DES FORMATIONS 1 New Vision of Technology Société de Services et de Solutions en Électronique, Informatique et Télécoms Adresse géographique : Abidjan - Cocody Riviera Palmeraie Téléphone : 225 22 49 59 45 Fax : 225

More information

Graph Visualization Tools: A Comparative Analysis

Graph Visualization Tools: A Comparative Analysis Graph Visualization Tools: A Comparative Analysis Fariha Majeed 1, Dr. Saif-ur-Rahman 2 1,2 Shaheed Zulfikar Ali Bhutto Institute of Science and Technology (SZABIST) Karachi, Pakistan 1 majeed.fariha@gmail.com

More information

Network Metrics, Planar Graphs, and Software Tools. Based on materials by Lala Adamic, UMichigan

Network Metrics, Planar Graphs, and Software Tools. Based on materials by Lala Adamic, UMichigan Network Metrics, Planar Graphs, and Software Tools Based on materials by Lala Adamic, UMichigan Network Metrics: Bowtie Model of the Web n The Web is a directed graph: n webpages link to other webpages

More information

Social Network Analysis: Visualization Tools

Social Network Analysis: Visualization Tools Social Network Analysis: Visualization Tools Dr. oec. Ines Mergel The Program on Networked Governance Kennedy School of Government Harvard University ines_mergel@harvard.edu Content Assembling network

More information

Technical Specification. Solutions created by knowledge and needs

Technical Specification. Solutions created by knowledge and needs Technical Specification Solutions created by knowledge and needs The industrial control and alarm management system that integrates video, voice and data Technical overview Process Architechture OPC-OCI

More information

Jing Yang Spring 2010

Jing Yang Spring 2010 Information Visualization Jing Yang Spring 2010 1 InfoVis Programming 2 1 Outline Look at increasing higher-level tools 2D graphics API Graphicial User Interface (GUI) toolkits Visualization framework

More information

You can choose to install the plugin through Magento Connect or by directly using the archive files.

You can choose to install the plugin through Magento Connect or by directly using the archive files. Magento plugin 1.5.7 installation 1. Plugin installation You can choose to install the plugin through Magento Connect or by directly using the archive files. 1.1 Installation with Magento Connect 1.1.1

More information

ISO 10303-xx STEP. Sommaire. étendue. STandard for the Exchange of Product model data. Hervé Panetto CRAN Herve.Panetto@cran.uhp-nancy.fr. nancy.

ISO 10303-xx STEP. Sommaire. étendue. STandard for the Exchange of Product model data. Hervé Panetto CRAN Herve.Panetto@cran.uhp-nancy.fr. nancy. ISO 10303-xx STEP STandard for the Exchange of Product model data Hervé Panetto CRAN Herve.Panetto@cran.uhp-nancy.fr nancy.fr Sommaire 1. Architecture 2. Un protocole d application : AP214 3. Conclusions

More information

Gephi focus on data import. Clément Levallois Gephi Support Team and Assist. Prof. @EMLYON

Gephi focus on data import. Clément Levallois Gephi Support Team and Assist. Prof. @EMLYON Gephi focus on data import Clément Levallois Gephi Support Team and Assist. Prof. @EMLYON V 1.2 Sept 2014 1 Bio notes Education in economics, management, history of science (Ph.D.) Turned to digital methods

More information

How To Monitor User System Interactions Through Graph Based Dynamics Analysis

How To Monitor User System Interactions Through Graph Based Dynamics Analysis Monitoring User-System Interactions through Graph-Based Intrinsic Dynamics Analysis Sébastien Heymann, Bénédicte Le Grand Emails: Sebastien.Heymann@lip6.fr, Benedicte.Le-Grand@univ-paris1.fr May 30, 2013

More information

A Performance Evaluation of Open Source Graph Databases. Robert McColl David Ediger Jason Poovey Dan Campbell David A. Bader

A Performance Evaluation of Open Source Graph Databases. Robert McColl David Ediger Jason Poovey Dan Campbell David A. Bader A Performance Evaluation of Open Source Graph Databases Robert McColl David Ediger Jason Poovey Dan Campbell David A. Bader Overview Motivation Options Evaluation Results Lessons Learned Moving Forward

More information

ESMA REGISTERS OJ/26/06/2012-PROC/2012/004. Questions/ Answers

ESMA REGISTERS OJ/26/06/2012-PROC/2012/004. Questions/ Answers ESMA REGISTERS OJ/26/06/2012-PROC/2012/004 Questions/ Answers Question n.10 (dated 18/07/2012) In the Annex VII Financial Proposal, an estimated budget of 1,500,000 Euro is mentioned for the total duration

More information

Introduction au BIM. ESEB 38170 Seyssinet-Pariset Economie de la construction email : contact@eseb.fr

Introduction au BIM. ESEB 38170 Seyssinet-Pariset Economie de la construction email : contact@eseb.fr Quel est l objectif? 1 La France n est pas le seul pays impliqué 2 Une démarche obligatoire 3 Une organisation plus efficace 4 Le contexte 5 Risque d erreur INTERVENANTS : - Architecte - Économiste - Contrôleur

More information

Creating a Network Graph with Gephi

Creating a Network Graph with Gephi Creating a Network Graph with Gephi Gephi is a powerful tool for network analysis, but it can be intimidating. It has a lot of tools for statistical analysis of network data most of which you won't be

More information

NakeDB: Database Schema Visualization

NakeDB: Database Schema Visualization NAKEDB: DATABASE SCHEMA VISUALIZATION, APRIL 2008 1 NakeDB: Database Schema Visualization Luis Miguel Cortés-Peña, Yi Han, Neil Pradhan, Romain Rigaux Abstract Current database schema visualization tools

More information

Processing data streams by relational analysis

Processing data streams by relational analysis Processing data streams by relational analysis Ilhème Ghalamallah Institut de Recherche en Informatique de Toulouse, IRIT-SIG Plan Introduction Tetralogie Proposition X-Plor Conclusion 1 In the business

More information

Network-Based Tools for the Visualization and Analysis of Domain Models

Network-Based Tools for the Visualization and Analysis of Domain Models Network-Based Tools for the Visualization and Analysis of Domain Models Paper presented as the annual meeting of the American Educational Research Association, Philadelphia, PA Hua Wei April 2014 Visualizing

More information

Durée 4 jours. Pré-requis

Durée 4 jours. Pré-requis F5 - BIG-IP Application Security Manager V11.0 Présentation du cours Ce cours traite des attaques applicatives orientées Web et de la façon d utiliser Application Security Manager (ASM) pour s en protéger.

More information

Data Visualization. Scientific Principles, Design Choices and Implementation in LabKey. Cory Nathe Software Engineer, LabKey cnathe@labkey.

Data Visualization. Scientific Principles, Design Choices and Implementation in LabKey. Cory Nathe Software Engineer, LabKey cnathe@labkey. Data Visualization Scientific Principles, Design Choices and Implementation in LabKey Catherine Richards, PhD, MPH Staff Scientist, HICOR crichar2@fredhutch.org Cory Nathe Software Engineer, LabKey cnathe@labkey.com

More information

Sun Management Center Change Manager 1.0.1 Release Notes

Sun Management Center Change Manager 1.0.1 Release Notes Sun Management Center Change Manager 1.0.1 Release Notes Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 817 0891 10 May 2003 Copyright 2003 Sun Microsystems, Inc. 4150

More information

Tools and Techniques for Social Network Analysis

Tools and Techniques for Social Network Analysis Tools and Techniques for Social Network Analysis Pajek Program for Analysis and Visualization of Large Networks Pajek: What is it Pajek is a program, for Windows and Linux (via Wine) Developers: Vladimir

More information

Solaris 10 Documentation README

Solaris 10 Documentation README Solaris 10 Documentation README Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 817 0550 10 January 2005 Copyright 2005 Sun Microsystems, Inc. 4150 Network Circle, Santa

More information

Visualising Space Time Dynamics: Plots and Clocks, Graphs and Maps

Visualising Space Time Dynamics: Plots and Clocks, Graphs and Maps The International Symposium on Spatial Temporal Data Mining & Geo Computation at UCL, July 19 23, 2011 Visualising Space Time Dynamics: Plots and Clocks, Graphs and Maps Michael Batty Martin Austwick Ollie

More information

Développer des applications mobiles avec ArcGIS 10.1

Développer des applications mobiles avec ArcGIS 10.1 Séminaire Partenaires Esri France 6 et 7 juin 2012 Paris Développer des applications mobiles avec ArcGIS 10.1 Patrice Freydière Thierry Peuzin Olivier Rossini Introduction Le Systeme ArcGIS Facile Puissant

More information

PRACTICAL DATA MINING IN A LARGE UTILITY COMPANY

PRACTICAL DATA MINING IN A LARGE UTILITY COMPANY QÜESTIIÓ, vol. 25, 3, p. 509-520, 2001 PRACTICAL DATA MINING IN A LARGE UTILITY COMPANY GEORGES HÉBRAIL We present in this paper the main applications of data mining techniques at Electricité de France,

More information

Executive Dashboard. User Guide

Executive Dashboard. User Guide Executive Dashboard User Guide 2 Contents Executive Dashboard Overview 3 Naming conventions 3 Getting started 4 Welcome to Socialbakers Executive Dashboard! 4 Comparison View 5 Setting up a comparison

More information

Il est repris ci-dessous sans aucune complétude - quelques éléments de cet article, dont il est fait des citations (texte entre guillemets).

Il est repris ci-dessous sans aucune complétude - quelques éléments de cet article, dont il est fait des citations (texte entre guillemets). Modélisation déclarative et sémantique, ontologies, assemblage et intégration de modèles, génération de code Declarative and semantic modelling, ontologies, model linking and integration, code generation

More information

Self-Service Business Intelligence

Self-Service Business Intelligence Self-Service Business Intelligence BRIDGE THE GAP VISUALIZE DATA, DISCOVER TRENDS, SHARE FINDINGS Solgenia Analysis provides users throughout your organization with flexible tools to create and share meaningful

More information

Recent Large Graph Visualization Tools : A Review

Recent Large Graph Visualization Tools : A Review 159 Recent Large Graph Visualization Tools : A Review Sorn Jarukasemratana Tsuyoshi Murata Large graph visualization tools are important instruments for researchers to understand large graph data sets.

More information

MapReduce Détails Optimisation de la phase Reduce avec le Combiner

MapReduce Détails Optimisation de la phase Reduce avec le Combiner MapReduce Détails Optimisation de la phase Reduce avec le Combiner S'il est présent, le framework insère le Combiner dans la pipeline de traitement sur les noeuds qui viennent de terminer la phase Map.

More information

Memory Eye SSTIC 2011. Yoann Guillot. Sogeti / ESEC R&D yoann.guillot(at)sogeti.com

Memory Eye SSTIC 2011. Yoann Guillot. Sogeti / ESEC R&D yoann.guillot(at)sogeti.com Memory Eye SSTIC 2011 Yoann Guillot Sogeti / ESEC R&D yoann.guillot(at)sogeti.com Y. Guillot Memory Eye 2/33 Plan 1 2 3 4 Y. Guillot Memory Eye 3/33 Memory Eye Analyse globale d un programme Un outil pour

More information

Data Visualisation and Statistical Analysis Within the Decision Making Process

Data Visualisation and Statistical Analysis Within the Decision Making Process Data Visualisation and Statistical Analysis Within the Decision Making Process Jamie Mahoney Centre for Educational Research and Development, University of Lincoln, Lincoln, UK. Keywords: Abstract: Data

More information

Introduction ToIP/Asterisk Quelques applications Trixbox/FOP Autres distributions Conclusion. Asterisk et la ToIP. Projet tuteuré

Introduction ToIP/Asterisk Quelques applications Trixbox/FOP Autres distributions Conclusion. Asterisk et la ToIP. Projet tuteuré Asterisk et la ToIP Projet tuteuré Luis Alonso Domínguez López, Romain Gegout, Quentin Hourlier, Benoit Henryon IUT Charlemagne, Licence ASRALL 2008-2009 31 mars 2009 Asterisk et la ToIP 31 mars 2009 1

More information

Remix Your Data: Visualizing Library Instruction Statistics

Remix Your Data: Visualizing Library Instruction Statistics Remix Your Data: Visualizing Library Instruction Statistics Brianna Marshall David Edward Ted Polley We will be handing out flash drives. If you would like to follow along, please install Sci2 and Gephi

More information

Comparative Analysis Report:

Comparative Analysis Report: Comparative Analysis Report: Visualization Tools & Platforms By Annabel Weiner, Erol Basusta, Leah Wilkinson, and Quenton Oakes Table of Contents Executive Summary Introduction Assessment Criteria Publishability

More information

TIBCO Spotfire Business Author Essentials Quick Reference Guide. Table of contents:

TIBCO Spotfire Business Author Essentials Quick Reference Guide. Table of contents: Table of contents: Access Data for Analysis Data file types Format assumptions Data from Excel Information links Add multiple data tables Create & Interpret Visualizations Table Pie Chart Cross Table Treemap

More information

Assessment software development for distributed firewalls

Assessment software development for distributed firewalls Assessment software development for distributed firewalls Damien Leroy Université Catholique de Louvain Faculté des Sciences Appliquées Département d Ingénierie Informatique Année académique 2005-2006

More information

BIG DATA IN BUSINESS ENVIRONMENT

BIG DATA IN BUSINESS ENVIRONMENT Scientific Bulletin Economic Sciences, Volume 14/ Issue 1 BIG DATA IN BUSINESS ENVIRONMENT Logica BANICA 1, Alina HAGIU 2 1 Faculty of Economics, University of Pitesti, Romania olga.banica@upit.ro 2 Faculty

More information

Group Projects M1 - Cubbyhole

Group Projects M1 - Cubbyhole SUPINFO Academic Dept. Project presentation Group Projects Version 1.0 Last update: 20/11/2013 Use: Students Author: Samuel CUELLA Conditions d utilisations : SUPINFO International University vous permet

More information

Guide Share France Groupe de Travail MQ sept 2013

Guide Share France Groupe de Travail MQ sept 2013 Guide Share France Groupe de Travail MQ sept 2013 Carl Farkas Pan-EMEA zwebsphere Application Integration Consultant IBM France D/2708 Paris, France Internet : farkas@fr.ibm.com 2013 IBM Corporation p1

More information

Exploratory Data Analysis for Ecological Modelling and Decision Support

Exploratory Data Analysis for Ecological Modelling and Decision Support Exploratory Data Analysis for Ecological Modelling and Decision Support Gennady Andrienko & Natalia Andrienko Fraunhofer Institute AIS Sankt Augustin Germany http://www.ais.fraunhofer.de/and 5th ECEM conference,

More information

Web Data Visualization

Web Data Visualization Web Data Visualization Department of Communication PhD Student Workshop Web Mining for Communication Research April 22-25, 2014 http://weblab.com.cityu.edu.hk/blog/project/workshops Jie Qin & Hexin Chen

More information

Topic Maps Visualization

Topic Maps Visualization Topic Maps Visualization Bénédicte Le Grand, Laboratoire d'informatique de Paris 6 Introduction Topic maps provide a bridge between the domains of knowledge representation and information management. Topics

More information

Students who successfully complete the Health Science Informatics major will be able to:

Students who successfully complete the Health Science Informatics major will be able to: Health Science Informatics Program Requirements Hours: 72 hours Informatics Core Requirements - 31 hours INF 101 Seminar Introductory Informatics (1) INF 110 Foundations in Technology (3) INF 120 Principles

More information

Understanding Data: A Comparison of Information Visualization Tools and Techniques

Understanding Data: A Comparison of Information Visualization Tools and Techniques Understanding Data: A Comparison of Information Visualization Tools and Techniques Prashanth Vajjhala Abstract - This paper seeks to evaluate data analysis from an information visualization point of view.

More information

DKAN. Data Warehousing, Visualization, and Mapping

DKAN. Data Warehousing, Visualization, and Mapping DKAN Data Warehousing, Visualization, and Mapping Acknowledgements We d like to acknowledge the NuCivic team, led by Andrew Hoppin, which has done amazing work creating open source tools to make data available

More information

Temporal Visualization and Analysis of Social Networks

Temporal Visualization and Analysis of Social Networks Temporal Visualization and Analysis of Social Networks Peter A. Gloor*, Rob Laubacher MIT {pgloor,rjl}@mit.edu Yan Zhao, Scott B.C. Dynes *Dartmouth {yan.zhao,sdynes}@dartmouth.edu Abstract This paper

More information

Setting up a monitoring and remote control tool

Setting up a monitoring and remote control tool Setting up a monitoring and remote control tool Oral examination for internship - Second year of Master in Computer Sciences Kevin TAOCHY Department of Mathematics and Computer Sciences University of Reunion

More information

RA MODEL VISUALIZATION WITH MICROSOFT EXCEL 2013 AND GEPHI

RA MODEL VISUALIZATION WITH MICROSOFT EXCEL 2013 AND GEPHI RA MODEL VISUALIZATION WITH MICROSOFT EXCEL 2013 AND GEPHI Prepared for Prof. Martin Zwick December 9, 2014 by Teresa D. Schmidt (tds@pdx.edu) 1. DOWNLOADING AND INSTALLING USER DEFINED SPLIT FUNCTION

More information

WEBSITE AND APPLICATION DESIGNER

WEBSITE AND APPLICATION DESIGNER IA_IDS1_1 WEBSITE AND APPLICATION ER CAREERS INCLUDE: Usability Analyst / Information Architect / Interface Designer / Interaction Designer / UX Designer / Game UI Designer / Web Designer / Front-End Developer

More information

How To Download Openoffice 40 Manual And User Guide

How To Download Openoffice 40 Manual And User Guide openoffice 40 manual : The User's Guide openoffice 40 manual actually features a great offer for his or her customers giving users unlimited access and downloads. OPENOFFICE 40 MANUAL To begin with finding

More information

Thursday, February 7, 2013. DOM via PHP

Thursday, February 7, 2013. DOM via PHP DOM via PHP Plan PHP DOM PHP : Hypertext Preprocessor Langage de script pour création de pages Web dynamiques Un ficher PHP est un ficher HTML avec du code PHP

More information

IC05 Introduction on Networks &Visualization Nov. 2009. <mathieu.bastian@gmail.com>

IC05 Introduction on Networks &Visualization Nov. 2009. <mathieu.bastian@gmail.com> IC05 Introduction on Networks &Visualization Nov. 2009 Overview 1. Networks Introduction Networks across disciplines Properties Models 2. Visualization InfoVis Data exploration

More information

Sisense. Product Highlights. www.sisense.com

Sisense. Product Highlights. www.sisense.com Sisense Product Highlights Introduction Sisense is a business intelligence solution that simplifies analytics for complex data by offering an end-to-end platform that lets users easily prepare and analyze

More information

Applying the Chronographical Approach to the Modelling of Multistorey Building Projects

Applying the Chronographical Approach to the Modelling of Multistorey Building Projects Applying the Chronographical Approach to the Modelling of Multistorey Building Projects A. Francis, E. T. Miresco Department of Construction Engineering, École de technologie supérieure, University of

More information

openoffice 32 manual : The User's Guide

openoffice 32 manual : The User's Guide openoffice 32 manual : The User's Guide openoffice 32 manual actually carries a great offer for his or her customers giving users unlimited access and downloads. OPENOFFICE 32 MANUAL To begin finding Openoffice

More information

Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis

Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis (Version 1.17) For validation Document version 0.1 7/7/2014 Contents What is SAP Predictive Analytics?... 3

More information

EIT ICT Labs Information & Communication Technology Labs

EIT ICT Labs Information & Communication Technology Labs EIT ICT Labs Information & Communication Technology Labs Master in ICT ou Comment passer 1 an ailleurs en Europe, puis revenir à UNS dans le M2 IFI Parcours UBINET(-réseau et informatique répartie-) ou

More information

Improving the visualisation of statistics: The use of SDMX as input for dynamic charts on the ECB website

Improving the visualisation of statistics: The use of SDMX as input for dynamic charts on the ECB website Improving the visualisation of statistics: The use of SDMX as input for dynamic charts on the ECB website Xavier Sosnovsky, Gérard Salou European Central Bank Abstract The ECB has introduced a number of

More information

Introduction Les failles les plus courantes Les injections SQL. Failles Web. Maxime Arthaud. net7. Jeudi 03 avril 2014.

Introduction Les failles les plus courantes Les injections SQL. Failles Web. Maxime Arthaud. net7. Jeudi 03 avril 2014. Maxime Arthaud net7 Jeudi 03 avril 2014 Syllabus Introduction Exemple de Requête Transmission de données 1 Introduction Exemple de Requête Transmission de données 2 3 Exemple de Requête Transmission de

More information

Data Driven Success. Comparing Log Analytics Tools: Flowerfire s Sawmill vs. Google Analytics (GA)

Data Driven Success. Comparing Log Analytics Tools: Flowerfire s Sawmill vs. Google Analytics (GA) Data Driven Success Comparing Log Analytics Tools: Flowerfire s Sawmill vs. Google Analytics (GA) In business, data is everything. Regardless of the products or services you sell or the systems you support,

More information

LINKED DATA EXPERIENCE AT MACMILLAN Building discovery services for scientific and scholarly content on top of a semantic data model

LINKED DATA EXPERIENCE AT MACMILLAN Building discovery services for scientific and scholarly content on top of a semantic data model LINKED DATA EXPERIENCE AT MACMILLAN Building discovery services for scientific and scholarly content on top of a semantic data model 22 October 2014 Tony Hammond Michele Pasin Background About Macmillan

More information

openoffice impress manual

openoffice impress manual Reference Manual To understand showcasing to make use of and the way to totally exploit openoffice impress manual to your benefit, there are many sources of information for your requirements. OPENOFFICE

More information

Smarter Grids for a Smarter Planet

Smarter Grids for a Smarter Planet Smarter Grids for a Smarter Planet Marc FOROT, Solutions IBM marc_forot@fr.ibm.com Nov 26, 2009 Disclaimer (Optional location for any required disclaimer copy. To set disclaimer, or delete, go to View

More information

Course on Social Network Analysis Graphs and Networks

Course on Social Network Analysis Graphs and Networks Course on Social Network Analysis Graphs and Networks Vladimir Batagelj University of Ljubljana Slovenia V. Batagelj: Social Network Analysis / Graphs and Networks 1 Outline 1 Graph...............................

More information

Archived Content. Contenu archivé

Archived Content. Contenu archivé ARCHIVED - Archiving Content ARCHIVÉE - Contenu archivé Archived Content Contenu archivé Information identified as archived is provided for reference, research or recordkeeping purposes. It is not subject

More information

Oracle Big Data Spatial & Graph Social Network Analysis - Case Study

Oracle Big Data Spatial & Graph Social Network Analysis - Case Study Oracle Big Data Spatial & Graph Social Network Analysis - Case Study Mark Rittman, CTO, Rittman Mead OTN EMEA Tour, May 2016 info@rittmanmead.com www.rittmanmead.com @rittmanmead About the Speaker Mark

More information

ARESOS Project Reconstruction, Analyse et Accès aux Données dans les Grands Réseaux Socio-Sémantiques

ARESOS Project Reconstruction, Analyse et Accès aux Données dans les Grands Réseaux Socio-Sémantiques ARESOS Project Reconstruction, Analyse et Accès aux Données dans les Grands Réseaux Socio-Sémantiques Mission pour l'interdisciplinarité du CNRS - Défi Masses de Données Scientifiques - MASTODONS Patrick

More information

second level university master Academic Year 2013/14 QoLexity Measuring, Monitoring and Analysis of Quality of Life and its Complexity

second level university master Academic Year 2013/14 QoLexity Measuring, Monitoring and Analysis of Quality of Life and its Complexity second level university master Academic Year 2013/14 QoLexity Measuring, Monitoring and Analysis of Quality of Life and its Complexity LIST OF SUBJECTS AND TOPICS A. Concepts and tools Total: 7 credits

More information

Network Analysis from Start to Finish: Techniques, Tools, and Tips for Evaluating Your Network

Network Analysis from Start to Finish: Techniques, Tools, and Tips for Evaluating Your Network Network Analysis from Start to Finish: Techniques, Tools, and Tips for Evaluating Your Network Bobbi J. Carothers American Evaluation Association Denver, Colorado 10/17/2014 Example Graphic: What Is the

More information

Cours de Java. Sciences-U Lyon. Java - Introduction Java - Fondamentaux Java Avancé. http://www.rzo.free.fr

Cours de Java. Sciences-U Lyon. Java - Introduction Java - Fondamentaux Java Avancé. http://www.rzo.free.fr Cours de Java Sciences-U Lyon Java - Introduction Java - Fondamentaux Java Avancé http://www.rzo.free.fr Pierre PARREND 1 Octobre 2004 Sommaire Java Introduction Java Fondamentaux Java Avancé GUI Graphical

More information

OGRS 2009. Lab «Practical introduction to OrbisGIS 2.1» 9th, July 2009 Ecole Centrale of Nantes

OGRS 2009. Lab «Practical introduction to OrbisGIS 2.1» 9th, July 2009 Ecole Centrale of Nantes OGRS 2009 Lab «Practical introduction to OrbisGIS 2.1» 9th, July 2009 Ecole Centrale of Nantes Authors Petit Gwendall (IRSTV - FR CNRS 2488 - Ecole Centrale de Nantes, France) Lepetit Arnaud (Laboratoire

More information

PROVIDING INSIGHT FOR OPERATIONAL SUCCESS

PROVIDING INSIGHT FOR OPERATIONAL SUCCESS idashboards for Operations Management PROVIDING INSIGHT FOR OPERATIONAL SUCCESS idashboards helped Precoat move from manual data mining and paper reports to a system that allows us to identify best practices

More information

What is Visualization? Information Visualization An Overview. Information Visualization. Definitions

What is Visualization? Information Visualization An Overview. Information Visualization. Definitions What is Visualization? Information Visualization An Overview Jonathan I. Maletic, Ph.D. Computer Science Kent State University Visualize/Visualization: To form a mental image or vision of [some

More information

PROGRAM DIRECTOR: Arthur O Connor Email Contact: URL : THE PROGRAM Careers in Data Analytics Admissions Criteria CURRICULUM Program Requirements

PROGRAM DIRECTOR: Arthur O Connor Email Contact: URL : THE PROGRAM Careers in Data Analytics Admissions Criteria CURRICULUM Program Requirements Data Analytics (MS) PROGRAM DIRECTOR: Arthur O Connor CUNY School of Professional Studies 101 West 31 st Street, 7 th Floor New York, NY 10001 Email Contact: Arthur O Connor, arthur.oconnor@cuny.edu URL:

More information

Extracting Information from Social Networks

Extracting Information from Social Networks Extracting Information from Social Networks Aggregating site information to get trends 1 Not limited to social networks Examples Google search logs: flu outbreaks We Feel Fine Bullying 2 Bullying Xu, Jun,

More information

THINKMAP PROVIDES DYNAMIC, DATA-DRIVEN, VISUALIZATION TECHNOLOGY. NEED TO VISUALIZE COMPLEX DATA?

THINKMAP PROVIDES DYNAMIC, DATA-DRIVEN, VISUALIZATION TECHNOLOGY. NEED TO VISUALIZE COMPLEX DATA? THINKMAP PROVIDES DYNAMIC, DATA-DRIVEN, VISUALIZATION TECHNOLOGY. NEED TO VISUALIZE COMPLEX DATA? 155 Spring Street, Suite 3A New York NY 10012 tel 212.285.8600 fax 212.285.8999 www.thinkmap.com WELCOME

More information

N1 Grid Service Provisioning System 5.0 User s Guide for the Linux Plug-In

N1 Grid Service Provisioning System 5.0 User s Guide for the Linux Plug-In N1 Grid Service Provisioning System 5.0 User s Guide for the Linux Plug-In Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 819 0735 December 2004 Copyright 2004 Sun Microsystems,

More information

Using R for Social Media Analytics

Using R for Social Media Analytics Using R for Social Media Analytics Presentation to Tools for Teaching and Learning of Social Media Analytics Blue Sky workshop, 2015 International Communication Association conference (San Juan, Puerto

More information

vrealize Operations Manager User Guide

vrealize Operations Manager User Guide vrealize Operations Manager User Guide vrealize Operations Manager 6.0.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

Easy configuration of NETCONF devices

Easy configuration of NETCONF devices Easy configuration of NETCONF devices David Alexa 1 Tomas Cejka 2 FIT, CTU in Prague CESNET, a.l.e. Czech Republic Czech Republic alexadav@fit.cvut.cz cejkat@cesnet.cz Abstract. It is necessary for developers

More information

Data stream approaches for electric load curve analysis. Georges Hébrail, Marie-Luce Picard BILab : bilab.enst.fr ISF 2008, June 24th, Nice

Data stream approaches for electric load curve analysis. Georges Hébrail, Marie-Luce Picard BILab : bilab.enst.fr ISF 2008, June 24th, Nice Data stream approaches for electric load curve analysis 1 Georges Hébrail, Marie-Luce Picard BILab : bilab.enst.fr ISF 2008, June 24th, Nice Outline Deployment of a smart metering infrastructure What is

More information

Monitoring Open Source pour Java avec JmxTrans, Graphite et Nagios

Monitoring Open Source pour Java avec JmxTrans, Graphite et Nagios Monitoring Open Source pour Java avec JmxTrans, Graphite et Nagios 27 au 29 mars 2013 Speaker @cyrilleleclerc CTO Architect Cyrille Le Clerc Fort Traffic Open Source Cloud, DevOps Speaker @hgomez Architecte

More information

Social Network Analysis and Usability of our Own

Social Network Analysis and Usability of our Own An Extensible Open-Source Framework for Social Network Analysis Michal Barla and Mária Bieliková Abstract Online communities that form social networks became extremely important in many tasks related with

More information

WebSphere Business Monitor

WebSphere Business Monitor WebSphere Business Monitor Dashboards 2010 IBM Corporation This presentation should provide an overview of the dashboard widgets for use with WebSphere Business Monitor. WBPM_Monitor_Dashboards.ppt Page

More information

CASA project (1990 1995)

CASA project (1990 1995) 2A SI 6 Ouverture : Stéphane Vialle Stephane.Vialle@supelec.fr http://www.metz.supelec.fr/~vialle Ex. de : 3. (Key issues and examples) CASA project (1990 1995) Objective: distribution of large computations

More information

An Introduction to KeyLines and Network Visualization

An Introduction to KeyLines and Network Visualization An Introduction to KeyLines and Network Visualization 1. What is KeyLines?... 2 2. Benefits of network visualization... 2 3. Benefits of KeyLines... 3 4. KeyLines architecture... 3 5. Uses of network visualization...

More information

What's new in gvsig Desktop 2.0

What's new in gvsig Desktop 2.0 What's new in gvsig Desktop 2.0 What are the novelties? 2.0 1.12 Migrating and building... Some examples... Please pardon our appearance during construction Pie and bar chart legends Table in layout 1.12

More information

IMPLEMENTING HEALTHCARE DASHBOARDS FOR OPERATIONAL SUCCESS

IMPLEMENTING HEALTHCARE DASHBOARDS FOR OPERATIONAL SUCCESS idashboards for Healthcare IMPLEMENTING HEALTHCARE DASHBOARDS FOR OPERATIONAL SUCCESS idashboards gives me access to real-time actionable data from all areas of the hospital. Internally, the adoption rate

More information

TDAQ Analytics Dashboard

TDAQ Analytics Dashboard 14 October 2010 ATL-DAQ-SLIDE-2010-397 TDAQ Analytics Dashboard A real time analytics web application Outline Messages in the ATLAS TDAQ infrastructure Importance of analysis A dashboard approach Architecture

More information