ANALISI DELLE CORRISPONDENZE IN R

Size: px
Start display at page:

Download "ANALISI DELLE CORRISPONDENZE IN R"

Transcription

1 ANALISI DELLE CORRISPONDENZE IN R Un esempio I dati sono tratti da un'indagine ISTAT Aspetti della vita quotidiana condotta a febbraio 2010; sono reperibili sul sito Riguardano la frequenza in cui incontrano gli amici a seconda delle fasce d'età. Alcune classi sono state raggruppate. > amici= read.delim("d:/c-rogantin/diduniv/sd2/ /calcolatore/ancorr/amici.txt", + header =T, row.names=1); amici tuttig piu_v_sett una_v_sett qual_v_mese qual_v_anno mai_noamici >= Profili riga e colonna e distribuzioni marginali > profili_riga=prop.table(as.matrix(amici), 1) > profili_colonna=prop.table(as.matrix(amici), 2) > round(profili_riga*100,1) tuttig piu_v_sett una_v_sett qual_v_mese qual_v_anno mai_noamici >= > margine_riga=margin.table(as.matrix(amici), 1) > margine_colonna=margin.table(as.matrix(amici),2) > tot=sum(margine_riga) > media_riga=margine_riga/tot > media_colonna=margine_colonna/tot > round(media_riga*100,1) >= round(media_colonna*100,1) tuttig piu_v_sett una_v_sett qual_v_mese qual_v_anno mai_noamici Diagrammi a barre dei profili e delle deviazioni dalla media > par(mfrow=c(4,3)) > for (i in 1:dim(profili_riga)[1]) > {barplot(profili_riga[i,],main=row.names(profili_riga)[i])} [omissis]

2 > for (i in 1:dim(profili_riga)[1]) > {barplot(profili_riga[i,]-media_colonna,main=row.names(profili_riga)[i])} > par(mfrow=c(1,1)) Analisi delle corrispondenze Per effettuare l analisi delle corispondenze bisogna installare un modulo di R, chiamato ca 1. Dal menu Packages selezionare Set CRAN mirror... e scegliere un sito da cui prendere il modulo, ad esempio Italy(Padua). Sulla finestra Console appare > choosecranmirror() 2. Dal menu Packages selezionare Install package(s)... e scegliere ca Sulla finestra Console appare > utils:::menuinstallpkgs() trying URL ' Content type 'application/zip' length bytes (87 Kb) opened URL downloaded 87 Kb package ca successfully unpacked and MD5 sums checked The downloaded binary packages are in C:\Users\rogantin\AppData\Local\Temp\RtmpaYj8ht\downloaded_packages 3. Nel programma richiamare il modulo nel seguente modo > library(ca) ## richiama il modulo ca > ca_amici=ca(amici) La chiamata generale della funzione ca è la seguente: obj nd ca(obj, nd = NA, suprow = NA, supcol = NA, subsetrow = NA, subsetcol = NA) A two-way table of non-negative data, usually frequencies. Number of dimensions to be included in the output; if NA the maximum possible dimensions are included. Indices of supplementary rows. Indices of supplementary columns. suprow supcol subsetrow Row indices of subset. subsetcol Column indices of subset.

3 > summary(ca_amici) Principal inertias (eigenvalues): dim value % cum% scree plot ************************* ********* * Total: Rows: name mass qlt inr k=1 cor ctr k=2 cor ctr Columns: name mass qlt inr k=1 cor ctr k=2 cor ctr 1 tttg p_v_ un ql_v_m ql_v_n m_nm La struttura costruita con la funzione ca contiene varie informazioni. 1. sv Singular values (square roots of eigenvalues) 2. nd Dimenson of the solution 3. rownames Row names 4. rowmass Row masses 5. rowdist Row chi-square distances to centroid 6. rowinertia Row inertias 7. rowcoord Row standard coordinates 8. rowsup Indices of row supplementary points 9. colnames Column names 10. colmass Column masses 11. coldist Column chi-square distances to centroid 12. colinertia Column inertias 13. colcoord Column standard coordinates 14. colsup Indices of column supplementary points > ca_amici[1:15] $sv [1] $nd [1] NA

4 $rownames [1] "6-10" "11-14" "15-17" "18-19" "20-24" "25-34" "35-44" "45-54" "55-59" [10] "60-64" "65-74" ">=75" $rowmass [1] [7] $rowdist [1] [8] $rowinertia [1] [7] $rowcoord [,1] [,2] [,3] [,4] [,5] [1,] [2,] [3,] [4,] [5,] [6,] [7,] [8,] [9,] [10,] [11,] [12,] $rowsup logical(0) $colnames [1] "tuttig" "piu_v_sett" "una_v_sett" "qual_v_mese" "qual_v_anno" [6] "mai_noamici" $colmass [1] $coldist [1] $colinertia [1] $colcoord [,1] [,2] [,3] [,4] [,5] [1,] [2,] [3,] [4,] [5,] [6,] $colsup logical(0) $call ca(obj = amici)

5 Grafici dell analisi delle corrispondenze > plot(ca_amici) ## Il grafico di default è il Symmetric plot La chiamata generale della funzione plot applciata a una struttura ca è la seguente plot(x, dim = c(1,2), map = "symmetric", what = c("all", "all"), mass = c(false, FALSE), contrib = c("none", "none"), col = c("#0000ff", "#FF0000"), pch = c(16, 1, 17, 24), labels = c(2, 2), arrows = c(false, FALSE),...) x dim map what mass Simple correspondence analysis object returned by ca Numerical vector of length 2 indicating the dimensions to plot on horizontal and vertical axes respectively; default is first dimension horizontal and second dimension vertical. Character string specifying the map type. Allowed options include "symmetric" (default) "rowprincipal" "colprincipal" "symbiplot" "rowgab" "colgab" "rowgreen" "colgreen" Vector of two character strings specifying the contents of the plot. First entry sets the rows and the second entry the columns. Allowed values are "all" (all available points, default) "active" (only active points are displayed) "passive" (only supplementary points are displayed) "none" (no points are displayed) The status (active or supplementary) of rows and columns is set in ca using the options suprow and supcol. Vector of two logicals specifying if the mass should be represented by the area of the point symbols (first entry for rows, second one for columns) contrib Vector of two character strings specifying if contributions (relative or absolute) should be represented by different colour intensities. Available options are "none" (contributions are not indicated in the plot). "absolute" (absolute contributions are indicated by colour intensities). "relative" (relative contributions are indicated by colour intensities). If set to "absolute" or "relative", points with zero contribution are displayed in white. The higher the contribution of a point, the closer the corresponding colour to the one specified by the col option. col pch Vector of length 2 specifying the colours of row and column point symbols, by default blue for rows and red for columns. Colours can be entered in hexadecimal (e.g. "\#FF0000"), rgb (e.g. rgb(1,0,0)) values or by R-name (e.g. "red"). Vector of length 4 giving the type of points to be used for row active and supplementary, column active and supplementary points. See pchlist for a list of symbols.

6 labels arrows Vector of length two specifying if the plot should contain symbols only (0), labels only (1) or both symbols and labels (2). Setting labels to 2 results in the symbols being plotted at the coordinates and the labels with an offset. Vector of two logicals specifying if the plot should contain points (FALSE, default) or arrows (TRUE). First value sets the rows and the second value sets the columns.... Further arguments passed to plot and points. Details The function plot.ca makes a two-dimensional map of the object created by ca with respect to two selected dimensions. By default the scaling option of the map is "symmetric", that is the so-called symmetric map. In this map both the row and column points are scaled to have inertias (weighted variances) equal to the principal inertia (eigenvalue or squared singular value) along the principal axes, that is both rows and columns are in pricipal coordinates. Other options are as follows: -"rowprincipal" or "colprincipal" - these are the so-called asymmetric maps, with either rows in principal coordinates and columns in standard coordinates, or vice versa (also known as row-metricpreserving or column-metric-preserving respectively). These maps are biplots; -"symbiplot" - this scales both rows and columns to have variances equal to the singular values (square roots of eigenvalues), which gives a symmetric biplot but does not preserve row or column metrics; -"rowgab" or "colgab" - these are asymmetric maps (see above) with rows (respectively, columns) in principal coordinates and columns (respectively, rows) in standard coordinates multiplied by the mass of the corresponding point. These are also biplots and were proposed by Gabriel & Odoroff (1990); -"rowgreen" or "colgreen" - these are similar to "rowgab" and "colgab" except that the points in standard coordinates are multiplied by the square root of the corresponding masses, giving reconstructions of the standardized residuals. This function has options for sizing and shading the points. If the option mass is TRUE for a set of points, the size of the point symbol is proportional to the relative frequency (mass) of each point. If the option contrib is "absolute" or "relative" for a set of points, the colour intensity of the point symbol is proportional to the absolute contribution of the points to the planar display or, respectively, the quality of representation of the points in the display. I tre seguenti grafici sono ottenuti con le opzioni "colprincipal", "symbiplot", "symmetric" > plot(ca_amici, dim=c(1,2), mass = TRUE, contrib = "absolute", + map = "colprincipal", arrows = c(false, FALSE), col=c("red","blue"))

7 > plot(ca_amici, dim=c(1,2), mass = TRUE, # contrib = "absolute", + map = "symbiplot", arrows = c(false,true), col=c("red","blue")) > plot(ca_amici, dim=c(1,2), mass = TRUE, contrib = "absolute", + map = "symmetric", arrows = c(false,true), col=c("red","blue"))

The ca Package. October 29, 2007

The ca Package. October 29, 2007 Version 0.21 Date 2007-07-25 The ca Package October 29, 2007 Title Simple, Multiple and Joint Correspondence Analysis Author Michael Greenacre , Oleg Nenadic

More information

Package ca. R topics documented: February 15, Version Date Title Simple, Multiple and Joint Correspondence Analysis

Package ca. R topics documented: February 15, Version Date Title Simple, Multiple and Joint Correspondence Analysis Package ca February 15, 2013 Version 0.53 Date 2012-06-10 Title Simple, Multiple and Joint Correspondence Analysis Author Michael Greenacre , Oleg Nenadic

More information

Package RcmdrPlugin.temis

Package RcmdrPlugin.temis Type Package Package RcmdrPlugin.temis Title Graphical Integrated Text Mining Solution Version 0.7.9 Date 2017-07-07 July 11, 2017 Imports Rcmdr (>= 2.1-1), tcltk, tcltk2, utils, ca, R2HTML (>= 2.3.0),

More information

Package easycoda. R topics documented: November 16, 2018

Package easycoda. R topics documented: November 16, 2018 Type Package Depends R (>= 2.10), ca (>= 0.6), vegan (>= 2.3) Title Compositional Data Analysis in Practice Version 0.28 Date 2018-11-14 Author Package easycoda November 16, 2018 Maintainer

More information

Package mpm. February 20, 2015

Package mpm. February 20, 2015 Version 1.0-22 Date 2011-11-23 Title Multivariate Projection Methods Package mpm February 20, 2015 Author Luc Wouters Maintainer Tobias Verbeke

More information

Esempio con Google Play tore Example with Google Play tore

Esempio con Google Play tore Example with Google Play tore Guida all installazione ed uso dell App VR Tour Camerata Picena Per installare l App occorre aprire lo Store del vostro smartphone (Play Store o App Store) e cercare l App con parola chiave Camerata Picena.

More information

Graph Drawing e tecniche algoritmiche avanzate

Graph Drawing e tecniche algoritmiche avanzate Graph Drawing e tecniche algoritmiche avanzate Giuseppe Di Battista Maurizio Patrignani programma vengono introdotte alcune tecniche algoritmiche e viene discussa la loro applicazione al graph drawing

More information

Unconventional and Optimized Surface-Wave Acquitision and Analysis

Unconventional and Optimized Surface-Wave Acquitision and Analysis Unconventional and Optimized Surface-Wave Acquitision and Analysis giancarlo dal moro gdm@winmasw.com Keywords: Seismic data, data acquisition, MASW, multi-component MASW, Full Velocity Spectrum (FVS)

More information

Istruzioni passo passo per creare qualsiasi CUSTOM AWARD con BBLogger How to create step by step any CUSTOM AWARD by BBLogger

Istruzioni passo passo per creare qualsiasi CUSTOM AWARD con BBLogger How to create step by step any CUSTOM AWARD by BBLogger Istruzioni passo passo per creare qualsiasi CUSTOM AWARD con BBLogger How to create step by step any CUSTOM AWARD by BBLogger Aprire l applicazione e con il mouse andare sul pulsante custom award e cliccarci

More information

Programmi di utilità

Programmi di utilità Programmi di utilità La classe SystemData per il calcolo dei tempi e della occupazione di memoria Per calcolare i tempi e la occupazione di memoria è necessario interagire con il sistema operativo, questo

More information

MOC10215 Implementing and Managing Server Virtualization

MOC10215 Implementing and Managing Server Virtualization Tel. +39 02 365738 info@overneteducation.it www.overneteducation.it MOC10215 Implementing and Managing Server Virtualization Durata: 4.5 gg Descrizione Questo corso fornisce le competenze e le conoscenze

More information

Package explor. R topics documented: October 10, Type Package Title Interactive Interfaces for Results Exploration Version 0.3.

Package explor. R topics documented: October 10, Type Package Title Interactive Interfaces for Results Exploration Version 0.3. Type Package Title Interactive Interfaces for Results Exploration Version 0.3.3 Date 2017-10-10 Package explor October 10, 2017 Maintainer Shiny interfaces and graphical functions for multivariate analysis

More information

Package InPosition. R topics documented: February 19, 2015

Package InPosition. R topics documented: February 19, 2015 Package InPosition February 19, 2015 Type Package Title Inference Tests for ExPosition Version 0.12.7 Date 2013-12-09 Author Derek Beaton, Joseph Dunlop, Herve Abdi Maintainer Derek Beaton

More information

MWS3-2 - MOC INSTALLATION, STORAGE AND COMPUTE WITH WINDOWS SERVER 2016

MWS3-2 - MOC INSTALLATION, STORAGE AND COMPUTE WITH WINDOWS SERVER 2016 MWS3-2 - MOC 20740 - INSTALLATION, STORAGE AND COMPUTE WITH WINDOWS SERVER 2016 Categoria: Windows Server 2016 INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore: 5

More information

Package munfold. R topics documented: February 8, Type Package. Title Metric Unfolding. Version Date Author Martin Elff

Package munfold. R topics documented: February 8, Type Package. Title Metric Unfolding. Version Date Author Martin Elff Package munfold February 8, 2016 Type Package Title Metric Unfolding Version 0.3.5 Date 2016-02-08 Author Martin Elff Maintainer Martin Elff Description Multidimensional unfolding using

More information

Predict Outcomes and Reveal Relationships in Categorical Data

Predict Outcomes and Reveal Relationships in Categorical Data PASW Categories 18 Specifications Predict Outcomes and Reveal Relationships in Categorical Data Unleash the full potential of your data through predictive analysis, statistical learning, perceptual mapping,

More information

Generatore di parità. LIBRARY ieee; USE ieee.std_logic_1164.all ; ENTITY xor2 IS PORT( A, B : in std_logic ; Y : out std_logic ) ; END xor2 ;

Generatore di parità. LIBRARY ieee; USE ieee.std_logic_1164.all ; ENTITY xor2 IS PORT( A, B : in std_logic ; Y : out std_logic ) ; END xor2 ; LIBRARY ieee; USE ieee.std_logic_1164.all ; ENTITY xor2 IS PORT( A, B : in std_logic ; Y : out std_logic ) ; END xor2 ; ARCHITECTURE arch1 OF Xor2 IS BEGIN Y

More information

Tutorial GRB Analisi prompt emission GRB

Tutorial GRB Analisi prompt emission GRB Tutorial GRB Analisi prompt emission GRB 090510 Sara Cutini Posizione Swift o LAT Trigger GBM Scaricate i dati dal Fermi Science Support Center: Link per LAT: http://fermi.gsfc.nasa.gov/ssc/data/ Link

More information

Biplots in Practice MICHAEL GREENACRE. Professor of Statistics at the Pompeu Fabra University. Appendix A Offprint. Computati o Biplots

Biplots in Practice MICHAEL GREENACRE. Professor of Statistics at the Pompeu Fabra University. Appendix A Offprint. Computati o Biplots Biplots in Practice MICHAEL GREENACRE Professor of Statistics at the Pompeu Fabra University Appendix A Offprint Computati o Biplots First published: September 2010 ISBN: 978-84-923846-8-6 Supporting websites:

More information

MW MOC INSTALLING AND CONFIGURING WINDOWS 10

MW MOC INSTALLING AND CONFIGURING WINDOWS 10 MW10-4 - MOC 20698 - INSTALLING AND CONFIGURING WINDOWS 10 Categoria: Windows 10 INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore: 5 Giorni Windows 10 Microsoft Certified

More information

MW MOC SUPPORTING AND TROUBLESHOOTING WINDOWS 10

MW MOC SUPPORTING AND TROUBLESHOOTING WINDOWS 10 MW10-3 - MOC 10982 - SUPPORTING AND TROUBLESHOOTING WINDOWS 10 Categoria: Windows 10 INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore: 5 Giorni Windows 10 Microsoft

More information

PROPOSTE DI PROGETTI E TESI DI LAUREA

PROPOSTE DI PROGETTI E TESI DI LAUREA PROPOSTE DI PROGETTI E TESI DI LAUREA Tecnologie per i Sistemi Informativi Context Integration for Mobile Data Design Disparate, heterogeneous, independent Data Sources Semantic schema integration Context-aware

More information

BiplotGUI. Features Manual. Anthony la Grange Department of Genetics Stellenbosch University South Africa. Version February 2010.

BiplotGUI. Features Manual. Anthony la Grange Department of Genetics Stellenbosch University South Africa. Version February 2010. UNIVERSITEIT STELLENBOSCH UNIVERSITY jou kennisvennoot your knowledge partner BiplotGUI Features Manual Anthony la Grange Department of Genetics Stellenbosch University South Africa Version 0.0-6 14 February

More information

Programmazione avanzata con ecos

Programmazione avanzata con ecos Programmazione avanzata con ecos Giovanni Perbellini Agenda Aggiunta di un device driver all interno di ecos Modifica del repository Progettazione driver per il controllo di un contatore Modifica della

More information

Feature Selection Using Modified-MCA Based Scoring Metric for Classification

Feature Selection Using Modified-MCA Based Scoring Metric for Classification 2011 International Conference on Information Communication and Management IPCSIT vol.16 (2011) (2011) IACSIT Press, Singapore Feature Selection Using Modified-MCA Based Scoring Metric for Classification

More information

Automatic Creation of Define.xml for ADaM

Automatic Creation of Define.xml for ADaM Automatic Creation of Define.xml for ADaM Alessia Sacco, Statistical Programmer www.valos.it info@valos.it 1 Indice Define.xml Pinnacle 21 Community Valos ADaM Metadata 2 Define.xml Cos è: Case Report

More information

IBM SPSS Categories. Predict outcomes and reveal relationships in categorical data. Highlights. With IBM SPSS Categories you can:

IBM SPSS Categories. Predict outcomes and reveal relationships in categorical data. Highlights. With IBM SPSS Categories you can: IBM Software IBM SPSS Statistics 19 IBM SPSS Categories Predict outcomes and reveal relationships in categorical data Highlights With IBM SPSS Categories you can: Visualize and explore complex categorical

More information

Introduction to Graphs. Tecniche di Programmazione A.A. 2017/2018

Introduction to Graphs. Tecniche di Programmazione A.A. 2017/2018 Introduction to Graphs Tecniche di Programmazione Summary Definition: Graph Related Definitions Applications 2 Definition: Graph Introduction to Graphs Definition: Graph A graph is a collection of points

More information

Generalized Procrustes Analysis Example with Annotation

Generalized Procrustes Analysis Example with Annotation Generalized Procrustes Analysis Example with Annotation James W. Grice, Ph.D. Oklahoma State University th February 4, 2007 Generalized Procrustes Analysis (GPA) is particularly useful for analyzing repertory

More information

Section 4.3. Graphing Exponential Functions

Section 4.3. Graphing Exponential Functions Graphing Exponential Functions Graphing Exponential Functions with b > 1 Graph f x = ( ) 2 x Graphing Exponential Functions by hand. List input output pairs (see table) Input increases by 1 and output

More information

Data Mining: Unsupervised Learning. Business Analytics Practice Winter Term 2015/16 Stefan Feuerriegel

Data Mining: Unsupervised Learning. Business Analytics Practice Winter Term 2015/16 Stefan Feuerriegel Data Mining: Unsupervised Learning Business Analytics Practice Winter Term 2015/16 Stefan Feuerriegel Today s Lecture Objectives 1 Learning how k-means clustering works 2 Understanding dimensionality reduction

More information

A. Incorrect! This would be the negative of the range. B. Correct! The range is the maximum data value minus the minimum data value.

A. Incorrect! This would be the negative of the range. B. Correct! The range is the maximum data value minus the minimum data value. AP Statistics - Problem Drill 05: Measures of Variation No. 1 of 10 1. The range is calculated as. (A) The minimum data value minus the maximum data value. (B) The maximum data value minus the minimum

More information

Tecniche di Progettazione: Design Patterns

Tecniche di Progettazione: Design Patterns Tecniche di Progettazione: Design Patterns GoF: Decorator 1 Decorator Intent Attach additional responsibilities to an object dynamically. Decorators provide a flexible alternative to subclassing for extending

More information

MSQ3-8 - MOC UPDATING YOUR SQL SERVER SKILLS TO MICROSOFT SQL SERVER 2014

MSQ3-8 - MOC UPDATING YOUR SQL SERVER SKILLS TO MICROSOFT SQL SERVER 2014 MSQ3-8 - MOC 10977 - UPDATING YOUR SQL SERVER SKILLS TO MICROSOFT SQL SERVER 2014 Categoria: SQL Server 2014 e 2012 INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore:

More information

A general method for parameter estimation of averaging models

A general method for parameter estimation of averaging models Teorie & Modelli, n.s., XII, 1-2, 2007 (000-000) A general method for parameter estimation of averaging models Giulio Vidotto & Marco Vicentini * (Padua) Averaging models have been proposed within the

More information

Reti di Accesso e di Trasporto (Reti di Accesso) Stefano Salsano AA2010/11 Blocco 4 v1

Reti di Accesso e di Trasporto (Reti di Accesso) Stefano Salsano   AA2010/11 Blocco 4 v1 Reti di Accesso e di Trasporto (Reti di Accesso) Stefano Salsano e-mail: stefano.salsano@uniroma2.it AA2010/11 Blocco 4 v1 Virtual LANs Broadcast issues Switches: - did partition collision domains - bud

More information

Package fso. February 19, 2015

Package fso. February 19, 2015 Version 2.0-1 Date 2013-02-26 Title Fuzzy Set Ordination Package fso February 19, 2015 Author David W. Roberts Maintainer David W. Roberts Description Fuzzy

More information

Algebra II Quadratic Functions

Algebra II Quadratic Functions 1 Algebra II Quadratic Functions 2014-10-14 www.njctl.org 2 Ta b le o f C o n te n t Key Terms click on the topic to go to that section Explain Characteristics of Quadratic Functions Combining Transformations

More information

Fathom Dynamic Data TM Version 2 Specifications

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

More information

Schema Impianto Elettrico Opel Vivaro

Schema Impianto Elettrico Opel Vivaro We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with schema impianto elettrico

More information

Prelims Data Analysis TT 2018 Sheet 7

Prelims Data Analysis TT 2018 Sheet 7 Prelims Data Analysis TT 208 Sheet 7 At the end of this exercise sheet there are Optional Practical Exercises in R and Matlab. It is strongly recommended that students do these exercises, but students

More information

Digital Image Fundamentals. Prof. George Wolberg Dept. of Computer Science City College of New York

Digital Image Fundamentals. Prof. George Wolberg Dept. of Computer Science City College of New York Digital Image Fundamentals Prof. George Wolberg Dept. of Computer Science City College of New York Objectives In this lecture we discuss: - Image acquisition - Sampling and quantization - Spatial and graylevel

More information

Package EnQuireR. R topics documented: February 19, Type Package Title A package dedicated to questionnaires Version 0.

Package EnQuireR. R topics documented: February 19, Type Package Title A package dedicated to questionnaires Version 0. Type Package Title A package dedicated to questionnaires Version 0.10 Date 2009-06-10 Package EnQuireR February 19, 2015 Author Fournier Gwenaelle, Cadoret Marine, Fournier Olivier, Le Poder Francois,

More information

Modelling and Visualization of High Dimensional Data. Sample Examination Paper

Modelling and Visualization of High Dimensional Data. Sample Examination Paper Duration not specified UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE Modelling and Visualization of High Dimensional Data Sample Examination Paper Examination date not specified Time: Examination

More information

Errore 500 su installazione Phoca Gallery e Phoca Guestbook su Joomla 2.5. Scritto da ventus85 Domenica 12 Agosto :28

Errore 500 su installazione Phoca Gallery e Phoca Guestbook su Joomla 2.5. Scritto da ventus85 Domenica 12 Agosto :28 In questi giorni ho provato a installare le estensioni Phoca Gallery e Phoca Guestbook, più precisamente le ultime rilasciate ad oggi per Joomla 2.5, la 3.2.1 per la prima e la 2.0.5 per la seconda. In

More information

Corso di Identificazione dei Modelli e Analisi dei Dati

Corso di Identificazione dei Modelli e Analisi dei Dati Università degli Studi di Pavia Dipartimento di Ingegneria Industriale e dell Informazione Corso di Identificazione dei Modelli e Analisi dei Dati Random Variables (part 2) Prof. Giuseppe De Nicolao, Federica

More information

Introduction to Excel Workshop

Introduction to Excel Workshop Introduction to Excel Workshop Empirical Reasoning Center September 9, 2016 1 Important Terminology 1. Rows are identified by numbers. 2. Columns are identified by letters. 3. Cells are identified by the

More information

MWS3-3 - MOC NETWORKING WITH WINDOWS SERVER 2016

MWS3-3 - MOC NETWORKING WITH WINDOWS SERVER 2016 MWS3-3 - MOC 20741 - NETWORKING WITH WINDOWS SERVER 2016 Categoria: Windows Server 2016 INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore: 5,00000 Giorni Windows Server

More information

Corso: Identity with Windows Server 2016 Codice PCSNET: MWS3-4 Cod. Vendor: Durata: 5

Corso: Identity with Windows Server 2016 Codice PCSNET: MWS3-4 Cod. Vendor: Durata: 5 Corso: Identity with Windows Server 2016 Codice PCSNET: MWS3-4 Cod. Vendor: 20742 Durata: 5 Obiettivi Installare e configurare i controller di dominio. Gestire gli oggetti di dominio Active Directory utilizzando

More information

Metodo di Holt-Winters M. Romito 7 dicembre 2016

Metodo di Holt-Winters M. Romito 7 dicembre 2016 Metodo di Holt-Winters M. Romito 7 dicembre 2016 Smorzamento esponenziale (SE) e smorzamento esponenziale con trend (SET) auto.data

More information

Tecniche di Progettazione: Design Patterns

Tecniche di Progettazione: Design Patterns Tecniche di Progettazione: Design Patterns GoF: Decorator 1 An example 2 Your first idea of implementation 3 In reality 4 Now a beverage can be mixed from different condiment to form a new beverage 5 6

More information

CIND123 Module 6.2 Screen Capture

CIND123 Module 6.2 Screen Capture CIND123 Module 6.2 Screen Capture Hello, everyone. In this segment, we will discuss the basic plottings in R. Mainly; we will see line charts, bar charts, histograms, pie charts, and dot charts. Here is

More information

Campo Minato Nel Form1 sono presenti i seguenti componenti:

Campo Minato Nel Form1 sono presenti i seguenti componenti: Campo Minato Nel Form1 sono presenti i seguenti componenti: menustrip1 panel1 picturebox1 label_livello panel2 menustrip1 button_unknown button_free button_fall button_quest button_expl button_bomb Il

More information

Colour and Number Representation. From Hex to Binary and Back. Colour and Number Representation. Colour and Number Representation

Colour and Number Representation. From Hex to Binary and Back. Colour and Number Representation. Colour and Number Representation Colour and Number Representation From Hex to Binary and Back summary: colour representation easy: replace each hexadecimal "digit" with the corresponding four binary digits using the conversion table examples:

More information

MOC55021 Configuring and Administering Hyper-V in Windows Server 2012

MOC55021 Configuring and Administering Hyper-V in Windows Server 2012 Tel. +39 02 365738 info@overneteducation.it www.overneteducation.it MOC55021 Configuring and Administering Hyper-V in Windows Server 2012 Durata: 3 gg Descrizione Questo corso di tre giorni fornisce agli

More information

FARI LAMPS. Copyright 2017 EUROCAR TOGLIANI s.r.l.

FARI LAMPS. Copyright 2017 EUROCAR TOGLIANI s.r.l. FARI LAMPS FARI DA LAVORO A LED... 259 LED WORK LIGHTS FARI DA LAVORO AD INCANDESCENZA... 263 INCANDESCENT BULB WORK LIGHTS FARI E FANALINI A LED... 264 LED HEAD AND REAR LAMPS FARI E FANALINI AD INCANDESCENZA...

More information

Company Profile 2017

Company Profile 2017 Company Profile 2017 Industrial integrated IoT Solution Provider Leading network attached storage provider Unique Electronic Manufacturing Service Intelligent Medical System Provider Leading Automation

More information

Matrix algebra. Basics

Matrix algebra. Basics Matrix.1 Matrix algebra Matrix algebra is very prevalently used in Statistics because it provides representations of models and computations in a much simpler manner than without its use. The purpose of

More information

Package qrfactor. February 20, 2015

Package qrfactor. February 20, 2015 Type Package Package qrfactor February 20, 2015 Title Simultaneous simulation of Q and R mode factor analyses with Spatial data Version 1.4 Date 2014-01-02 Author George Owusu Maintainer

More information

Surfing Ada for ESP Part 2

Surfing Ada for ESP Part 2 Surfing Ada for ESP Part 2 C. Montangero Dipartimento d Informatica Corso di ESperienze di Programmazione a.a. 2012/13 1 Table of contents 2 CHAPTER 9: Packages Packages allow the programmer to define

More information

Gaussian derivatives and Eigen-images

Gaussian derivatives and Eigen-images Gaussian derivatives and Eigen-images FalseD; readpixelsaim_e:= ColorSeparate@Import@imDDP1, 1T; MathVisionTools 2008 Biomedical Image-Analysis, Technische

More information

Computer challenges guillotine: how an artificial player can solve a complex language TV game with web data analysis

Computer challenges guillotine: how an artificial player can solve a complex language TV game with web data analysis Computer challenges guillotine: how an artificial player can solve a complex language TV game with web data analysis Luca Squadrone University TorVergata Rome, Italy luca.squadrone@yahoo.it Abstract English.

More information

MSPJ-14 - MOC PLANNING, DEPLOYING AND MANAGING MICROSOFT PROJECT SERVER 2013

MSPJ-14 - MOC PLANNING, DEPLOYING AND MANAGING MICROSOFT PROJECT SERVER 2013 MSPJ-14 - MOC 55115 - PLANNING, DEPLOYING AND MANAGING MICROSOFT PROJECT SERVER 2013 Categoria: Project INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore: 3 Giorni

More information

INFORMATICA INDUSTRIALE

INFORMATICA INDUSTRIALE INFORMATICA INDUSTRIALE Lezione 2 Prof. Christian Forlani forlani@disco.unimib.it Tutor: Stefano Brusamolino brusamolino@ira.disco.unimib.it Device Structure: Core» Oscillator» Reset» Architecture» CPU

More information

Chapter 3 Transport Layer

Chapter 3 Transport Layer Chapter 3 Transport Layer Reti di Elaboratori Corso di Laurea in Informatica Università degli Studi di Roma La Sapienza Prof.ssa Chiara Petrioli Parte di queste slide sono state prese dal materiale associato

More information

Assignment: Backgrounding and Optical Flow.

Assignment: Backgrounding and Optical Flow. Assignment: Backgrounding and Optical Flow. April 6, 00 Backgrounding In this part of the assignment, you will develop a simple background subtraction program.. In this assignment, you are given two videos.

More information

Architettura Database Oracle

Architettura Database Oracle Architettura Database Oracle Shared Pool La shared pool consiste di: Data dictionary: cache che contiene informazioni relative agli oggetti del databse, lo storage ed i privilegi Library cache: contiene

More information

Step-by-Step Guide to Relatedness and Association Mapping Contents

Step-by-Step Guide to Relatedness and Association Mapping Contents Step-by-Step Guide to Relatedness and Association Mapping Contents OBJECTIVES... 2 INTRODUCTION... 2 RELATEDNESS MEASURES... 2 POPULATION STRUCTURE... 6 Q-K ASSOCIATION ANALYSIS... 10 K MATRIX COMPRESSION...

More information

Package OmicKriging. August 29, 2016

Package OmicKriging. August 29, 2016 Type Package Title Poly-Omic Prediction of Complex TRaits Version 1.4.0 Date 2016-03-03 Package OmicKriging August 29, 2016 Author Hae Kyung Im, Heather E. Wheeler, Keston Aquino Michaels, Vassily Trubetskoy

More information

Introduction to MATLAB

Introduction to MATLAB CHEE MATLAB Tutorial Introduction to MATLAB Introduction In this tutorial, you will learn how to enter matrices and perform some matrix operations using MATLAB. MATLAB is an interactive program for numerical

More information

SISTEMA ANTE EVO 2 DOOR SYSTEM EVO 2

SISTEMA ANTE EVO 2 DOOR SYSTEM EVO 2 EVO 2 Programma per ante scorrevoli in legno o con telaio in alluminio con peso massimo 50 kg. Disponibili nella versione frenata con ammortizzatori oppure con fermi tradizionali. Program for sliding doors

More information

The pixmap Package. R topics documented: May 3, Version Date Title Bitmap Images ( Pixel Maps ) Depends methods

The pixmap Package. R topics documented: May 3, Version Date Title Bitmap Images ( Pixel Maps ) Depends methods The pixmap Package May 3, 2007 Version 0.4-7 Date 2007-05-03 Title Bitmap Images ( Pixel Maps ) Depends methods Author Roger Bivand, Friedrich Leisch and Martin Mächler Maintainer Friedrich Leisch

More information

Package zebu. R topics documented: October 24, 2017

Package zebu. R topics documented: October 24, 2017 Type Package Title Local Association Measures Version 0.1.2 Date 2017-10-21 Author Olivier M. F. Martin [aut, cre], Michel Ducher [aut] Package zebu October 24, 2017 Maintainer Olivier M. F. Martin

More information

OEO035 Lo stack LAMP in Ubuntu

OEO035 Lo stack LAMP in Ubuntu Tel. +39 02 365738 info@overneteducation.it www.overneteducation.it OEO035 Lo stack LAMP in Ubuntu Durata: 3 gg Descrizione Normal 0 14 false false false IT X-NONE X-NONE Pagina 1 Il corso fornisce una

More information

Compilazione e assert GDB Valgrind. Guida al debugging. Luca Versari. Aprile 19, Luca Versari Guida al debugging

Compilazione e assert GDB Valgrind. Guida al debugging. Luca Versari. Aprile 19, Luca Versari Guida al debugging Aprile 19, 2017 Indice 1 Compilazione e assert 2 GDB 3 Valgrind Compilazione Compilazione standard $ gcc programma.c -o programma Compilazione con (quasi) tutti i warning $ gcc -O2 -Wall programma.c -o

More information

Centroid Principles. Object s center of gravity or center of mass. Graphically labeled as

Centroid Principles. Object s center of gravity or center of mass. Graphically labeled as Centroids Centroid Principles Object s center of gravity or center of mass. Graphically labeled as Centroid Principles Point of applied force caused by acceleration due to gravity. Object is in state of

More information

MATLAB Basics. Configure a MATLAB Package 6/7/2017. Stanley Liang, PhD York University. Get a MATLAB Student License on Matworks

MATLAB Basics. Configure a MATLAB Package 6/7/2017. Stanley Liang, PhD York University. Get a MATLAB Student License on Matworks MATLAB Basics Stanley Liang, PhD York University Configure a MATLAB Package Get a MATLAB Student License on Matworks Visit MathWorks at https://www.mathworks.com/ It is recommended signing up with a student

More information

Ordination (Guerrero Negro)

Ordination (Guerrero Negro) Ordination (Guerrero Negro) Back to Table of Contents All of the code in this page is meant to be run in R unless otherwise specified. Load data and calculate distance metrics. For more explanations of

More information

Package CAinterprTools

Package CAinterprTools Package CAinterprTools July 22, 2018 Title Graphical Aid in Correspondence Analysis Interpretation and Significance Testings Version 1.0.0 Allows to plot a number of information related to the interpretation

More information

GAF Geography-informed Energy Conservation for Ad Hoc Routing

GAF Geography-informed Energy Conservation for Ad Hoc Routing GAF Geography-informed Energy Conservation for Ad Hoc Routing Ya Xu, John Heidemann, Deborah Estrin USC/ISI, UCLA Energy? Node Density Node Redundancy in Ad Hoc Routing GAF: Geographic Adaptive Fidelity

More information

Struttura di Programma Sequenza Selezione Iterazione

Struttura di Programma Sequenza Selezione Iterazione Struttura di Programma Sequenza Selezione Iterazione ,VWUX]LLRQLLSHULLOOWUDVIHULLPHQWRGHOOFRQWUROOOOR,VWUX]LRQHEUHDN /LVWUX]LRQHEUHDNSURYRFDOXVFLWDLPPHGLDWDGDOFLFORR GDXQLVWUX]LRQHVZLWFKLQFXLqUDFFKLXVD,VWUX]LLRQHFRQWLLQXH

More information

Decimal Binary Conversion Decimal Binary Place Value = 13 (Base 10) becomes = 1101 (Base 2).

Decimal Binary Conversion Decimal Binary Place Value = 13 (Base 10) becomes = 1101 (Base 2). DOMAIN I. NUMBER CONCEPTS Competency 00 The teacher understands the structure of number systems, the development of a sense of quantity, and the relationship between quantity and symbolic representations.

More information

Fondamenti di Informatica

Fondamenti di Informatica Fondamenti di Informatica Getting started with Matlab and basic concept of programming Prof. Emiliano Casalicchio http://www.ce.uniroma2.it/courses/foi/ Avvisi n L esame sarà in lingua italiana n L esame

More information

Learning Log Title: CHAPTER 3: PORTIONS AND INTEGERS. Date: Lesson: Chapter 3: Portions and Integers

Learning Log Title: CHAPTER 3: PORTIONS AND INTEGERS. Date: Lesson: Chapter 3: Portions and Integers Chapter 3: Portions and Integers CHAPTER 3: PORTIONS AND INTEGERS Date: Lesson: Learning Log Title: Date: Lesson: Learning Log Title: Chapter 3: Portions and Integers Date: Lesson: Learning Log Title:

More information

CORSO MOC2810: Fundamentals of Network Security. CEGEKA Education corsi di formazione professionale

CORSO MOC2810: Fundamentals of Network Security. CEGEKA Education corsi di formazione professionale CORSO MOC2810: Fundamentals of Network Security CEGEKA Education corsi di formazione professionale Fundamentals of Network Security This four-day, instructor-led course provides students with the knowledge

More information

CSE 6242 A / CS 4803 DVA. Feb 12, Dimension Reduction. Guest Lecturer: Jaegul Choo

CSE 6242 A / CS 4803 DVA. Feb 12, Dimension Reduction. Guest Lecturer: Jaegul Choo CSE 6242 A / CS 4803 DVA Feb 12, 2013 Dimension Reduction Guest Lecturer: Jaegul Choo CSE 6242 A / CS 4803 DVA Feb 12, 2013 Dimension Reduction Guest Lecturer: Jaegul Choo Data is Too Big To Do Something..

More information

Fondamenti di Informatica C. Lezione 24: Dentro le applet

Fondamenti di Informatica C. Lezione 24: Dentro le applet Fondamenti di Informatica C Lezione 24: Dentro le applet 22-11-2004 Il commento iniziale /* --------------------------------------------------- This applet creates a few different user interface components

More information

Package prettygraphs

Package prettygraphs Type Package Title Publication-Quality Graphics Version 2.1.6 Date 2018-12-17 Author Package prettygraphs December 18, 2018 Maintainer Simple and crisp publication-quality

More information

SOLE GAZEBO with led light integrated into the columns 7

SOLE GAZEBO with led light integrated into the columns 7 LIGHTING 1 - L outdoor si illumina con forme nobili dal gusto classico. Creazioni decorative e tecnologiche in cui luce e materia si fondono e si completano l un l altra. Elementi luminosi lavorati a

More information

Chapter 1. Using the Cluster Analysis. Background Information

Chapter 1. Using the Cluster Analysis. Background Information Chapter 1 Using the Cluster Analysis Background Information Cluster analysis is the name of a multivariate technique used to identify similar characteristics in a group of observations. In cluster analysis,

More information

Example of one enclave in the field. strike. Right hand rule convention of orientation. pitch or rake. dip

Example of one enclave in the field. strike. Right hand rule convention of orientation. pitch or rake. dip Example of one enclave in the field strike Right hand rule convention of orientation pitch or rake dip Example of a thin section of rock Example of an upside down thin section of rock Orientation of the

More information

Lab # 2 - ACS I Part I - DATA COMPRESSION in IMAGE PROCESSING using SVD

Lab # 2 - ACS I Part I - DATA COMPRESSION in IMAGE PROCESSING using SVD Lab # 2 - ACS I Part I - DATA COMPRESSION in IMAGE PROCESSING using SVD Goals. The goal of the first part of this lab is to demonstrate how the SVD can be used to remove redundancies in data; in this example

More information

2-9 Operations with Complex Numbers

2-9 Operations with Complex Numbers 2-9 Operations with Complex Numbers Warm Up Lesson Presentation Lesson Quiz Algebra 2 Warm Up Express each number in terms of i. 1. 9i 2. Find each complex conjugate. 3. 4. Find each product. 5. 6. Objective

More information

Package automap. May 30, 2011

Package automap. May 30, 2011 Package automap May 30, 2011 Version 1.0-10 Date 2010/30/05 Title Automatic interpolation package Author Paul Hiemstra Maintainer Paul Hiemstra Description

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

Package PCADSC. April 19, 2017

Package PCADSC. April 19, 2017 Type Package Package PCADSC April 19, 2017 Title Tools for Principal Component Analysis-Based Data Structure Comparisons Version 0.8.0 A suite of non-parametric, visual tools for assessing differences

More information

GESTIONE DEL BACKGROUND. Programmazione Web 1

GESTIONE DEL BACKGROUND. Programmazione Web 1 GESTIONE DEL BACKGROUND Programmazione Web 1 Background background-color opacity Immagini nel background background-image background-repeat background-posi:on background-a;achment Programmazione Web 2

More information

CORSO MOC10215: Implementing and Managing Microsoft Server Virtualization. CEGEKA Education corsi di formazione professionale

CORSO MOC10215: Implementing and Managing Microsoft Server Virtualization. CEGEKA Education corsi di formazione professionale CORSO MOC10215: Implementing and Managing Microsoft Server Virtualization CEGEKA Education corsi di formazione professionale Implementing and Managing Microsoft Server Virtualization This five-day, instructor-led

More information

FREE STANDING LEAFLET DISPLAY

FREE STANDING LEAFLET DISPLAY esempio 1 model 1 esempio 2 model 2 Geniale sistema modulare per la realizzazione di svariate soluzioni espositive per utilizzo interno. Caratteristica principale è il profilo in alluminio centrale che

More information

CS246: Mining Massive Datasets Jure Leskovec, Stanford University

CS246: Mining Massive Datasets Jure Leskovec, Stanford University CS246: Mining Massive Datasets Jure Leskovec, Stanford University http://cs246.stanford.edu /2/8 Jure Leskovec, Stanford CS246: Mining Massive Datasets 2 Task: Given a large number (N in the millions or

More information