Regression. Albert Satorra. Mètodes Estadístics, UPF, hivern 2013

Size: px
Start display at page:

Download "Regression. Albert Satorra. Mètodes Estadístics, UPF, hivern 2013"

Transcription

1 Regression Albert Satorra Mètodes Estadístics, UPF, hivern 2013 Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

2 Continguts 1 Summary statistics Standardization Transforming non-normal data Inference: estimation of the mean ANOVA: variation across groups 2 Regression analysis More data sets, for examples Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

3 Summary statistics Summary of distribution of Nota summary(nota) Min. 1st Qu. Median Mean 3rd Qu. Max length(nota) = 365 mean(nota) = sd(nota) = Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

4 Summary statistics Histogram of Nota Density Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24 Nota

5 Standardization Percentiles, under normal distribution mean(nota) =6.48; sd(nota) =1.56 Standardized variable: Znota = (Nota- 6.48)/ 1.56 How many people above 5? 1 - pnorm( (5-6.48)/ 1.56) = i.e. 83% Compare with true value, sum(nota > 5)/length(Nota) = % PERCENTILES: > 5 is the percentile since pnorm( (5-6.48)/ 1.56)= > 7 is the percentile, since pnorm( (7-6.48)/ 1.56) [1] In general, e.g. el 30 percentile is: mean(nota) + qnorm(0.32)*sd(nota) = Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

6 Standardization Valor immobles, non-normality data=read.table(" = T) summary(valor) Min. 1st Qu. Median Mean 3rd Qu. Max We normalize by taking log of Valor logvalor = log(valor) summary(logvalor) Min. 1st Qu. Median Mean 3rd Qu. Max mean(logvalor)=13.54 sd(logvalor)= 0.78 for the 3rd Qu , we have that pnorm((log( ) - mean(logvalor))/sd(logvalor)) [1] which is close to the third quartile The 60 percentile is to be found as qnorm(0.6)= So: exp( qnorm(0.6)* ) = Note that the true percentile of is sum(valor < )/length(Valor) = 0.585; that is, 58.5 This accuracy would not be obtained if we did not use the log transformation of the variable Valor The normal approximation of the 60 percentile is: mean(valor) + qnorm(0.60)*sd(valor) = Note that is the 71 percentile, since sum(valor < )/length(Valor) = Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

7 Standardization Histogram of Valor Density 0e+00 1e 07 2e 07 3e 07 4e 07 5e 07 6e 07 7e 07 0e+00 1e+06 2e+06 3e+06 4e+06 5e+06 Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24 Valor

8 Standardization Histogram of logvalor Density logvalor Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

9 Inference: estimation of the mean Estimation of the population mean using a sample sample1=sample(round(nota,2),20) sample1 [1] summary(sample1) Min. 1st Qu. Median Mean 3rd Qu. Max sd(sample1)= t.test(sample1) data: sample1 t = , df = 19, p-value = 3.314e-13 alternative hypothesis: true mean is not equal to 0 95 percent confidence interval: (we know that the true value is 6.48) t.test(sample1, conf.level = 0.9)... alternative hypothesis: true mean is not equal to 0 90 percent confidence interval: Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

10 Inference: estimation of the mean Estimation of the population mean using a sample sample2=sample(round(nota,2),20) Sample 2: summary(sample2) Min. 1st Qu. Median Mean 3rd Qu. Max sd(sample2) [1] t.test(sample2) data: sample2 t = , df = 19, p-value = 1.702e-15 alternative hypothesis: true mean is not equal to 0 95 percent confidence interval: Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

11 ANOVA: variation across groups Group variation? (groups are classrooms) ANOVA: aov2= aov(testexamenfinal ~ as.factor(grupteoria)) summary(aov2) Df Sum Sq Mean Sq F value Pr(>F) as.factor(grupteoria) e-07 *** Residuals Signif. codes: 0 *** ** 0.01 * YES! Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

12 ANOVA: variation across groups Class group variation of Nota Albert Satorra ( Mètodes Estadístics, UPF, 1hivern ) 3 4 GRAU 5 en CP, hivern / 24

13 ANOVA: variation across groups Group variation? (groups are types of exam) aggregate(nota, list(tipus),mean) Group.1 x boxplot(nota ~ Tipus, col=2:5, main="per tipus (1 a 4) d examen") dev.copy2pdf(file="/albertnou/courses/metodes05_07_10/boxplot2.pdf") ANOVA aov1= aov(nota ~ as.factor(tipus)) summary(aov1) Df Sum Sq Mean Sq F value Pr(>F) #as.factor(tipus) # Residuals Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

14 ANOVA: variation across groups per tipus (1 a 4) d'examen Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

15 ANOVA: variation across groups On categorial data relations Examples of categorical variables include marital status (never married, married, divorced, or widowed) or race (black, white, Asian, native American, and Inuit). We are interested in the study of associations between variables that may have more than two categories. More details on relation among categorical variables are to be found here: Slides Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

16 Regression analysis The regression model relates a single outcome to one or a number of covariates. The model embodies basic ideas about explaining variation, statistical control, and the functional form of social and behavioral relationships. Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

17 Regression analysis Variation of grade of final exam (Y) across different levels of midterm exam (X) scatterplot of Y vs X TestExamenFinal Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

18 Regression analysis Simple Linear Regression > out=lm(testexamenfinal ~ MitjanaControls) > summary(out) Call: lm(formula = TestExamenFinal ~ MitjanaControls) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) * MitjanaControls e-14 *** --- Signif. codes: 0 *** ** 0.01 * Residual standard error: on 363 degrees of freedom Multiple R-squared: 0.143, Adjusted R-squared: Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

19 Regression analysis Simple Linear Regression library(foreign) help(read.spss) data = read.spss(" use.value.labels = TRUE, to.data.frame = TRUE, max.value.labels = Inf, trim.factor.names = FALSE, trim_values = TRUE, reencode = NA, us attach(data); names(data) plot(gnpcap, LIFE_EXPECTANCY, type ="n", axes=f) axis(1) axis(2) text(gnpcap[-27], LIFE_EXPECTANCY[-27], COUNTRY[-27], col="blue", cex=0.8) abline(lm(life_expectancy ~ GNPCAP), lty=4, col="red", lwd=3) text(gnpcap[27], LIFE_EXPECTANCY[27], COUNTRY[27], col="red", cex=1.2) dev.copy2pdf(file="/albertnou/courses/metodes05_07_10/yvsx2.pdf") Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

20 Regression analysis Variation of life expectation (Y) against GNP (X) LIFE_EXPECTANCY Greece Bosnia Portugal Croatia Poland Czech Rep. Georgia Lithuania mania Bulgaria Hungary Estonia Belarus ine Latvia Russia Spain Ireland Iceland Sweden Netherlands France Norway Italy United Kingdom Finland Germany Belgium Denmark Austria Switzerland GNPCAP Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

21 Regression analysis Simple Linear Regression > summary(lm(life_expectancy ~ GNPCAP)) Call: lm(formula = LIFE_EXPECTANCY ~ GNPCAP) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) 7.039e e < 2e-16 *** GNPCAP 3.804e e e-08 *** --- Signif. codes: 0 *** ** 0.01 * Residual standard error: on 29 degrees of freedom Multiple R-squared: , Adjusted R-squared: F-statistic: on 1 and 29 DF, p-value: 2.142e-08 Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

22 Regression analysis Simple Linear Regression using IBM SPSS Statistics These are the steps to produce the chart by using syntax : 1 Open the data file (in the IBM SPSS Statistics main menu, select FILE... OPEN... DATA, browse to the folder where the data file resides, select the data file and click Open) 2 From the main menu, select FILE... NEW... SYNTAX (not FILE... NEW... SCRIPT; here is where the difference between syntax and script comes in...). This will open a Syntax window. 3 copy and paste the lines below into the new Syntax window 4 from the main menu in the Syntax window, select RUN... ALL Having the data file opened, copy and paste the next lines in the Syntax window and then run it by selecting R GGRAPH /GRAPHDATASET NAME="graphdataset" VARIABLES=GNPCAP LIFE_EXPECTANCY COUNTRY MISSING=LISTWISE REPORTMISSING=NO /GRAPHSPEC SOURCE=INLINE. BEGIN GPL SOURCE: s=usersource(id("graphdataset")) DATA: GNPCAP=col(source(s), name("gnpcap")) DATA: LIFE_EXPECTANCY=col(source(s), name("life_expectancy")) DATA: COUNTRY=col(source(s), name("country"), unit.category()) GUIDE: axis(dim(1), label("gnp per Capita (US Dollars)")) GUIDE: axis(dim(2), label("life expectancy")) ELEMENT: point(position(gnpcap*life_expectancy), label(country)) END GPL. Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

23 Regression analysis Dades immobles: Valor versus Superficie Construida data=read.table(" [1] "TipologiaInm" "Calidad" "TamanoPoblacion" [8] "NumGarajes" "Ascensor" plot(valor, SuperficieConstruida) plot( SuperficieConstruida, Valor) abline(lm(valor ~ SuperficieConstruida), col="red", lty=3, lwd=2) out1= lm(valor ~ SuperficieConstruida) summary(out1) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) Albert (Intercept) Satorra ( Mètodes Estadístics, UPF, hivern ) GRAU en CP, <2e-16 hivern 2013*** 22 / 24

24 Regression analysis More data sets, for examples Multiple Regression (CPS data) data=read.table(" names(data) [1] "female" "age" "mstat" "edyr" "hgc" "reth" "hw" qqnorm(hw) qqnorm(log(hw)) hist(hw) out1 <- lm(log(hw) ~ edyr + age + female+ mstat, data = data) summary(out1) library(car) avplots(out1) Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

25 Regression analysis More data sets, for examples Other data sets: fatality data (Iraq), welfare data, ) ### Fatality data library(foreign) fata=read.dta(" ### iraq data fata=read.table(" ## welfare data dades=read.table(" Albert Satorra ( Mètodes Estadístics, UPF, hivern 2013 ) GRAU en CP, hivern / 24

Economic crisis, European Welfare State Models and Inequality

Economic crisis, European Welfare State Models and Inequality Economic crisis, European Welfare State Models and Inequality Carlos Ochando Claramunt Department of Applied Economics, University of Valencia (Spain) Carlos.Ochando@uv.es Paper presented to XIII International

More information

PSY 307 Statistics for the Behavioral Sciences. Chapter 2 Describing Data with Tables and Graphs

PSY 307 Statistics for the Behavioral Sciences. Chapter 2 Describing Data with Tables and Graphs PSY 307 Statistics for the Behavioral Sciences Chapter 2 Describing Data with Tables and Graphs Class Progress To-Date Math Readiness Descriptives Midterm next Monday Frequency Distributions One of the

More information

Economic and Social Council

Economic and Social Council United Nations Economic and Social Council ECE/CES/GE.41/2013/3 Distr.: General 15 August 2013 Original: English Economic Commission for Europe Conference of European Statisticians Group of Experts on

More information

Central and Eastern Europe Statistics 2005

Central and Eastern Europe Statistics 2005 Central and Eastern Europe Statistics 2005 An EVCA Special Paper November 2006 Edited by the EVCA Central and Eastern Europe Task Force About EVCA The European Private Equity and Venture Capital Association

More information

Poland: Competitiveness Report 2015 Innovation and Poland s Performance in

Poland: Competitiveness Report 2015 Innovation and Poland s Performance in Poland: Competitiveness Report 2015 Innovation and Poland s Performance in 2007-2014 Marzenna Anna Weresa The World Economy Research Institute Collegium of the World Economy Key research questions How

More information

Lesson 2.1 Linear Regression

Lesson 2.1 Linear Regression Lesson 2.1 Linear Regression Activity 1 Line of Best Fit The scatterplot shows the area, E, of the Amazon rain forest remaining, in thousands of square kilometers, > years after 1980. > E 6 3745 8 3724

More information

the Reinsurance Mechanism

the Reinsurance Mechanism The European Unemployment Insurance 2.0: the Reinsurance Mechanism Miroslav Beblavý (with Daniel Gros and Ilaria Maselli) CEPS Why Reinsurance? Appropriateness of the solution always depends on problem

More information

Walkie Talkie APMP300. User manual

Walkie Talkie APMP300. User manual Walkie Talkie User manual Table of contents 1. Safety 1 1.1 Intended use 3 1. Labels in this manual 3. Preparations for use.1 Unpacking 4. Package contents 5.3 Charge the battery.4 Insert batteries 3.

More information

Europe Turkey MCA Major Roads of South East Europe

Europe Turkey MCA Major Roads of South East Europe 1) Road coverage Navigation SD card 8 GB ~100 % detailed street Connector road 2) Sales arguments This SD card provides updated navigation data with a coverage of ~100 % of detailed roads in European countries

More information

Europe Turkey MFD Major Roads of South East Europe

Europe Turkey MFD Major Roads of South East Europe 1) Road coverage Navigation SD card 8 GB ~100 % detailed street Connector road 2) Sales arguments This SD card provides updated navigation data with a coverage of ~100 % of detailed roads in European countries

More information

Munkaanyag

Munkaanyag TECHNICAL SPECIFICATION SPÉCIFICATION TECHNIQUE TECHNISCHE SPEZIFIKATION CEN/TS 16555-4 December 2014 ICS 03.100.40; 03.100.50; 03.140 English Version Innovation management - Part 4: Intellectual property

More information

Who Reads and Who Follows? What analytics tell us about the audience of academic blogging Chris Prosser Politics in

Who Reads and Who Follows? What analytics tell us about the audience of academic blogging Chris Prosser Politics in Who Reads and Who Follows? What analytics tell us about the audience of academic blogging Chris Prosser Politics in Spires @caprosser 1 What do we want to know about the audience for academic blogging?

More information

Economic Outlook for 2016

Economic Outlook for 2016 Economic Outlook for 2016 Arturo Bris Professor of Finance, IMD Director, IMD World Competitiveness Center Yale International Center for Finance European Corporate Governance Institute 2015 IMD International.

More information

National Census Geography Some lessons learned and future challenges in European countries

National Census Geography Some lessons learned and future challenges in European countries UNSD-AITRS Regional Workshop on the Integration of Statistical and Geospatial Information Amman, Jordan, 16-20 February, 2015 National Census Geography Some lessons learned and future challenges in European

More information

THE DIGITALISATION CHALLENGES IN LITHUANIAN ENGINEERING INDUSTRY. Darius Lasionis LINPRA Director November 30, 2018 Latvia

THE DIGITALISATION CHALLENGES IN LITHUANIAN ENGINEERING INDUSTRY. Darius Lasionis LINPRA Director November 30, 2018 Latvia THE DIGITALISATION CHALLENGES IN LITHUANIAN ENGINEERING INDUSTRY Darius Lasionis LINPRA Director November 30, 2018 Latvia THE ENGINEERING INDUSTRIES ASSOCIATION OF LITHUANIA (LINPRA) is an independent

More information

H2020 Excellent science arie Skłodowska-Curie Actions. Your research career in Europe. 17 November 2015

H2020 Excellent science arie Skłodowska-Curie Actions. Your research career in Europe. 17 November 2015 H2020 Excellent science arie Skłodowska-Curie Actions Your research career in Europe 17 November 2015 As a researcher I want to undertake a project in Europe, in an academic or other (e.g. business) setting

More information

TECHNICAL PROFILES CATALOGUE 2016

TECHNICAL PROFILES CATALOGUE 2016 TECHNICAL PROFILES CATALOGUE 2016 ULTIMATE PROFILE SOLUTIONS Table of Contents: I. FILTER FRAME PRofIles...........................9 AP 669................................................... 9 AP 591...................................................

More information

Munkaanyag

Munkaanyag TECHNICAL SPECIFICATION SPÉCIFICATION TECHNIQUE TECHNISCHE SPEZIFIKATION CEN/TS 16555-6 December 2014 ICS 03.100.40; 03.100.50 English Version Innovation management - Part 6: Creativity management Management

More information

Understanding Knowledge Societies Report of UNDESA/DPADM. Measurement Aspects. Irene Tinagli Tunis, 17 Nov World Summit on Information Society

Understanding Knowledge Societies Report of UNDESA/DPADM. Measurement Aspects. Irene Tinagli Tunis, 17 Nov World Summit on Information Society Understanding Knowledge Societies Report of UNDESA/DPADM Measurement Aspects by Irene Tinagli Tunis, 17 Nov. 2005 World Summit on Information Society About Measurement WHY? To assess & better understand

More information

EMERGING METHODOLIGES FOR THE CENSUS IN THE UNECE REGION

EMERGING METHODOLIGES FOR THE CENSUS IN THE UNECE REGION United Nations International Seminar on Population and Housing Censuses: Beyond the 2010 Round 27-29 November 2012 Seoul, Republic of Korea SESSION 4: Emerging methodologies for the census EMERGING METHODOLIGES

More information

RECOVERED PAPER DATA

RECOVERED PAPER DATA RECOVERED PAPER DATA 999- RECOVERED PAPER DATA, 999- FOOD AND AGRICULTURE ORGANIZATION OF THE UNITED NATIONS Rome, Disclaimer TABLE OF CONTENTS INTRODUCTION DEFINITIONS OF TERMS USED RECOVERED PAPER TRADE

More information

Pre-Commercial Procurement (PCP) Actions

Pre-Commercial Procurement (PCP) Actions Pre-Commercial Procurement (PCP) Actions Open call in Objective 11.1 Targeted Calls in objectives 5.1(d), 11.2, 11.3, 8.2, 5.1(e)(1), 2.2(b) lieve.bos@ec.europa.eu EU Commission, DG INFSO Lisbon policy

More information

Eurovision Song Contest 2011

Eurovision Song Contest 2011 Eurovision Song Contest 2011 Annex with detailed illustration of the 15-day spectrum recording Seite 50 von 81 Evaluation of the 1 th day of the DKE spectrum recording: 01.05.2011 Maximum values of the

More information

Chem & Bio non-proliferation

Chem & Bio non-proliferation Chem & Bio non-proliferation Workshop on the Export Control of Dual-use Materials and Technologies in GUAM Countries Kyiv, Ukraine, 14 March 2018 Independent Arms Control Consultant Circe poisoning the

More information

EU Ecolabel EMAS Environmental Technology Verification (ETV) State-of-play and evaluations

EU Ecolabel EMAS Environmental Technology Verification (ETV) State-of-play and evaluations EU Ecolabel EMAS Environmental Technology Verification (ETV) State-of-play and evaluations Pierre Henry DG Environment B1 3 instruments of Circular Economy action plan Improving the efficiency and uptake

More information

Avery Dennison ICS Performance Guarantee Sign Cut and Wrapping Films Durability Bulletin 2.0

Avery Dennison ICS Performance Guarantee Sign Cut and Wrapping Films Durability Bulletin 2.0 Sign Cut and Wrapping Films Durability Bulletin 2.0 EU Revision number: 3 Date: 062016 ICS PERFORMANCE GUARANTEE The ICS Performance Guarantee combines our films with other qualified components to form

More information

NFC Forum: The Evolution of a Consortium

NFC Forum: The Evolution of a Consortium NFC Forum: The Evolution of a Consortium Presented by Greg Kohn Sr. Operations Director, NFC Forum ANSI Open Forum: Building Bridges across the Standards Ecosystem October 9, 2012 Part of the World Standards

More information

Regulatory status for using RFID in the UHF spectrum 3 May 2006

Regulatory status for using RFID in the UHF spectrum 3 May 2006 Regulatory status for using RFID in the UHF spectrum 3 May NOTE: The following countries were updated since the last publication of 3 March : Thailand, Romania. The table attached provides an overview

More information

This document is a preview generated by EVS

This document is a preview generated by EVS TECHNICAL REPORT CLC/TR 50579 RAPPORT TECHNIQUE TECHNISCHER BERICHT June 2012 ICS 91.140.50 English version Electricity metering equipment (a.c.) - Severity levels, immunity requirements and test methods

More information

2018/2019 HCT Transition Period OFFICIAL COMPETITION RULES

2018/2019 HCT Transition Period OFFICIAL COMPETITION RULES 2018/2019 HCT Transition Period OFFICIAL COMPETITION RULES 1. INTRODUCTION These HCT Transition Period Official Competition Rules ( Official Rules ) govern how players earn Hearthstone Competitive Points

More information

Number of divorced persons as a percentage of the total population aged 15 years and older

Number of divorced persons as a percentage of the total population aged 15 years and older Life Domain: Population, Households and Families Goal Dimension: Socio-Economic Structure Measurement Dimension: Population and Household Structure Subdimension: Structure of Population by Marital Status

More information

Public Consultation: Science 2.0 : science in transition

Public Consultation: Science 2.0 : science in transition DIRECTORATES-GENERAL FOR RESEARCH AND INNOVATION (RTD) AND COMMUNICATIONS NETWORKS, CONTENT AND TECHNOLOGY (CONNECT) Public Consultation: Science 2.0 : science in transition QUESTIONNAIRE A. Information

More information

Economic Dynamics and Structural Change

Economic Dynamics and Structural Change Econ of Innovation III Economic Dynamics and Structural Change Winter Term 2017/18 Uwe Cantner* / Simone Vannuccini* * Friedrich Schiller University Jena University of Southern Denmark, Odense uwe.cantner@uni-jena.de,

More information

INTERNATIONAL CIVIL AVIATION ORGANIZATION

INTERNATIONAL CIVIL AVIATION ORGANIZATION EUR DOC 024 Attachment INTERNATIONAL CIVIL AVIATION ORGANIZATION EUROPEAN PRINCIPLES AND PROCEDURES FOR THE ALLOCATION OF SECONDARY SURVEILLANCE RADAR MODE S INTERROGATOR CODES (IC) 2011 ATTACHMENT MODE

More information

Walkie Talkie APMP500. User manual

Walkie Talkie APMP500. User manual Walkie Talkie APMP500 User manual 1. Table of contents SAFETY 1.1 Intended use 1. Labels in this manual 1.3 General safety instructions 5. Preparations for use 5.1 Unpacking 5. Package contents.3 Place

More information

Trade Barriers EU-Russia based in technical regulations

Trade Barriers EU-Russia based in technical regulations Trade Barriers EU-Russia based in technical regulations Introduction Russia is a large market that offers business opportunities for companies like yours. However, accessing this market can be somehow

More information

ISTEAC. Paper Recycling. LABORATORY OF HEAT TRANSFER and ENVIRONMENTAL ENGINEERING

ISTEAC. Paper Recycling. LABORATORY OF HEAT TRANSFER and ENVIRONMENTAL ENGINEERING LABORATORY OF HEAT TRANSFER and ENVIRONMENTAL ENGINEERING DEPARTMENT of MECHANICAL ENGINEERING ARISTOTLE UNIVERSITY THESSALONIKI ISTEAC Paper Recycling Coordinator: Aristotle University of Thessaloniki

More information

Monthly Summary of Troop Contribution to UN Operations

Monthly Summary of Troop Contribution to UN Operations Monthly Summary of Troop Contribution to UN Operations Month of Report : 3-Dec-3 Country Description of Post M F Totals ) Albania Individual Police............ 0 Subtotal for Country ) Algeria Experts

More information

QuickSpecs. VIVE Pro VR System with Advantage+ Service Pack. Overview

QuickSpecs. VIVE Pro VR System with Advantage+ Service Pack. Overview Overview Introduction VIVE Pro is shaping the future of how companies engage with their consumers, train their employees and develop products. VIVE Pro is built to scale with your business requirements

More information

Background material 1

Background material 1 Background material 1 European Value Chains Manufacturing production in the EU became more integrated within European value chains A few large firms are intensively involved in GVCs, but these large firms

More information

Number of married persons as a percentage of the total population aged 15 years and older

Number of married persons as a percentage of the total population aged 15 years and older Life Domain: Population, Households and Families Goal Dimension: Socio-Economic Structure Measurement Dimension: Population and Household Structure Subdimension: Structure of Population by Marital Status

More information

The compact test- disconnect terminal interface system for protection and secondary technology

The compact test- disconnect terminal interface system for protection and secondary technology POCON POWER Connector The compact test- disconnect terminal interface system for protection and secondary technology POCON the compact test-disconnect terminal interface system Safe control and testing

More information

ISO INTERNATIONAL STANDARD

ISO INTERNATIONAL STANDARD INTERNATIONAL STANDARD ISO 8442-5 First edition 2004-12-15 Materials and articles in contact with foodstuffs Cutlery and table holloware Part 5: Specification for sharpness and edge retention test of cutlery

More information

PROGRAM AT-A-GLANCE: PRINT ENGINES SPECIALIZATION EUROPE, MIDDLE EAST AND AFRICA

PROGRAM AT-A-GLANCE: PRINT ENGINES SPECIALIZATION EUROPE, MIDDLE EAST AND AFRICA PROGRAM AT-A-GLANCE: PRINT ENGINES SPECIALIZATION EUROPE, MIDDLE EAST AND AFRICA SPECIALIZATIONS: REWARDING YOUR EXPERTISE Through the Zebra PartnerConnect program, Zebra supports, recognizes and rewards

More information

New era for Eureka - relations with ETPs

New era for Eureka - relations with ETPs New era for Eureka - relations with ETPs Dr. Aleš Mihelič EUREKA Chairman Slovenian EUREKA Chair 07/08 The past is history Established in 1985 An initiative of French President Mitterand and German Chancellor

More information

Process Control HPP-25

Process Control HPP-25 Process Control HPP-25 Riveting process monitoring 6 different control parameters Touchscreen operation Windows diagnostics software Industrie 4.0 ready...joining is our business worldwide! Process Control

More information

Popular Support for Rank-dependent Social Evaluation Functions 1

Popular Support for Rank-dependent Social Evaluation Functions 1 Popular Support for Rank-dependent Social Evaluation Functions 1 (First Draft) Juan Gabriel Rodríguez Universidad Complutense de Madrid, Campus de Somosaguas, 28223 Madrid, Spain Tel: +34 91 3942515. E-mail:

More information

Document comprises 11 pages 03.15

Document comprises 11 pages 03.15 Document comprises 11 pages 03.15 A comma is used as the decimal marker. National foreword This document (EN 14399-6:2015) has been prepared by Technical Committee CEN/TC 185 Fasteners (Secretariat: DIN,

More information

Measurement Statistics, Histograms and Trend Plot Analysis Modes

Measurement Statistics, Histograms and Trend Plot Analysis Modes Measurement Statistics, Histograms and Trend Plot Analysis Modes Using the Tektronix FCA and MCA Series Timer/Counter/Analyzers Application Note How am I supposed to observe signal integrity, jitter or

More information

ECU Education Commission. Survey on Chess in Schools 2015/16 INITIAL FINDINGS

ECU Education Commission. Survey on Chess in Schools 2015/16 INITIAL FINDINGS ECU Education Commission Survey on Chess in Schools 2015/16 INITIAL FINDINGS John Foley Jesper Hall England Sweden 10 March 2016 http://www.europechess.org/commissions/educational-commission/ 1 Contents

More information

Brochure More information from

Brochure More information from Brochure More information from http://www.researchandmarkets.com/reports/1342464/ The World Market for Stranded Wire, Cable, Ropes, and Plaited Bands of Iron, Steel, Copper, or Aluminum Excluding Electrically

More information

How big is China s Digital Economy

How big is China s Digital Economy How big is China s Digital Economy Alicia Garcia Herrero Senior Fellow, Bruegel Jianwei Xu Beijing Normal University & Bruegel November 2017 Roadmap 1. Motivation 2. Internationally comparable measures

More information

This document is a preview generated by EVS

This document is a preview generated by EVS TECHNICAL SPECIFICATION SPÉCIFICATION TECHNIQUE TECHNISCHE SPEZIFIKATION CEN ISO/TS 16530-2 December 2015 ICS 75.180.10 English Version integrity - Part 2: integrity for the operational phase (ISO/TS 16530-2:2014)

More information

Communicating Framework Programme 7. European Commission Research DG Pablo AMOR

Communicating Framework Programme 7. European Commission Research DG Pablo AMOR Communicating Framework Programme 7 European Commission Research DG Pablo AMOR Launching FP7 Conference for Information Multipliers Brussels, 7-8 February 2007 Information on European research Web Press

More information

FINAL DRAFT TECHNICAL REPORT CLC/FprTR RAPPORT TECHNIQUE TECHNISCHER BERICHT January English version

FINAL DRAFT TECHNICAL REPORT CLC/FprTR RAPPORT TECHNIQUE TECHNISCHER BERICHT January English version FINAL DRAFT TECHNICAL REPORT CLC/FprTR 50579 RAPPORT TECHNIQUE TECHNISCHER BERICHT January 2012 ICS English version Electricity metering equipment - Severity levels, immunity requirements and test methods

More information

Western Europe Ford NX 2018

Western Europe Ford NX 2018 1) Road coverage Navigation DVD ~100 % detailed street 2) Sales arguments This DVD provides navigation data with coverage of ~100 % of detailed roads in 28 European countries. Find the most direct route

More information

English version. Audio, video and similar electronic apparatus - Safety requirements

English version. Audio, video and similar electronic apparatus - Safety requirements EUROPEAN STANDARD EN 60065/A12 NORME EUROPÉENNE EUROPÄISCHE NORM February 2011 ICS 97.020 English version Audio, video and similar electronic apparatus - Safety requirements Appareils audio, vidéo et appareils

More information

OBN BioTuesday: Sources of Public Non-Dilutable Funding & Export Support to UK R&D Companies

OBN BioTuesday: Sources of Public Non-Dilutable Funding & Export Support to UK R&D Companies OBN BioTuesday: Sources of Public Non-Dilutable Funding & Export Support to UK R&D Companies SME Instrument and Eurostars Jane Watkins National Contact Point Horizon 2020 SME Instrument and Eurostars Jane

More information

Story Excitement Social Compete Escapism Challenge Creation Achieve Curiosity Fantasy Hilgard et al. (2013) Rigby et al. (2006) Bartle (1996) Sherry e

Story Excitement Social Compete Escapism Challenge Creation Achieve Curiosity Fantasy Hilgard et al. (2013) Rigby et al. (2006) Bartle (1996) Sherry e Story Excitement Social Compete Escapism Challenge Creation Achieve Curiosity Fantasy Hilgard et al. (2013) Rigby et al. (2006) Bartle (1996) Sherry et al. (2006) LeBlanc (2004) Steinkuehler (2005) Yee

More information

Sense. When thinking of silence, I hear gentle tunes played by an ocean orchestra nearby.

Sense. When thinking of silence, I hear gentle tunes played by an ocean orchestra nearby. SENSE Blue Vision Sense When thinking of silence, I hear gentle tunes played by an ocean orchestra nearby. When thinking of silence, I see waves crashing against the empty shore. When thinking of silence,

More information

stripax The professional stripping tool

stripax The professional stripping tool stripax The professional stripping tool stripax the original: developed from experience Weidmüller is the world s leading manufacturer of solutions for electrical connectivity, transmission, conditioning

More information

Ergonomiska principer vid utformning av arbetssystem (ISO 6385:2004) Ergonomic principles in the design of work systems (ISO 6385:2004)

Ergonomiska principer vid utformning av arbetssystem (ISO 6385:2004) Ergonomic principles in the design of work systems (ISO 6385:2004) SVENSK STANDARD SS- Fastställd 2004-02-27 Utgåva 1 Ergonomiska principer vid utformning av arbetssystem (ISO 6385:2004) Ergonomic principles in the design of work systems (ISO 6385:2004) ICS 13.180 Språk:

More information

Maintaining the Argo bibliographies. Megan Scanderbeg

Maintaining the Argo bibliographies. Megan Scanderbeg Maintaining the Argo bibliographies Megan Scanderbeg AST-17 Meeting in Yokohama, Japan March 216 Update for the past year 39 Argo papers published in 299 days in 215 3 articles in Nature Climate Change

More information

We are starting to see more vehicles on the road today with panoramic roofs being either a complete glass roof or two sections with one moving as the

We are starting to see more vehicles on the road today with panoramic roofs being either a complete glass roof or two sections with one moving as the We are starting to see more vehicles on the road today with panoramic roofs being either a complete glass roof or two sections with one moving as the sunroof to improve the ambience of the internal surroundings

More information

WOODWORKING TECHNOLOGY IN EUROPE: HIGHLIGHTS European Federation of Woodworking Technology Manufacturers

WOODWORKING TECHNOLOGY IN EUROPE: HIGHLIGHTS European Federation of Woodworking Technology Manufacturers European Federation of Woodworking Technology Manufacturers ADVANCED ECONOMIES - GDP % GROWTH RATE 2017 8,0 7,0 6,0 5,0 4,0 3,0 2,0 1,0 0,0 Ireland Malta Slovenia Estonia Latvia Czech Republic Cyprus

More information

VALUE OF GOODS EXPORTS INCREASED BY 15 PER CENT IN 2017 Trade deficit lower than the year before

VALUE OF GOODS EXPORTS INCREASED BY 15 PER CENT IN 2017 Trade deficit lower than the year before Tulli tiedottaa Tullen informerar Customs Information ANNUAL PUBLICATION: preliminary data For publication on 7 February 21 at 9. am VALUE OF GOODS EXPORTS INCREASED BY 15 PER CENT IN 217 Trade deficit

More information

SECTEUR Ascertaining user needs

SECTEUR Ascertaining user needs Ascertaining user needs Marta Bruno Soares (Uni Leeds), Maria Noguer (IEA), Nigel Arnell (Uni Reading), Jorge Paz (Tecnalia) and Amanda Hall (Telespazio VEGA UK) What is? «The Sector Engagement for the

More information

Automated Frequency Response Measurement with AFG31000, MDO3000 and TekBench Instrument Control Software APPLICATION NOTE

Automated Frequency Response Measurement with AFG31000, MDO3000 and TekBench Instrument Control Software APPLICATION NOTE Automated Frequency Response Measurement with AFG31000, MDO3000 and TekBench Instrument Control Software Introduction For undergraduate students in colleges and universities, frequency response testing

More information

OECD/ADBI 7th Round Table on Capital Market Reform in Asia October 2005 ADB Institute, Tokyo, Japan

OECD/ADBI 7th Round Table on Capital Market Reform in Asia October 2005 ADB Institute, Tokyo, Japan OECD/ADBI 7th Round Table on Capital Market Reform in Asia 27-28 October 2005 ADB Institute, Tokyo, Japan SESSION 4: DEVELOPMENTS IN VENTURE CAPITAL AND PRIVATE EQUITY SINCE THE END OF TECH BUBBLE Mr.

More information

Towards a taxonomy of innovation systems

Towards a taxonomy of innovation systems Towards a taxonomy of innovation systems Manuel Mira Godinho ISEG/UTLisbon Presentation to the Globelics Phd School 2005 Lisbon 31 May 2005 Based on Godinho, Mendonça and Pereira (2004) Structure of the

More information

ASSESSMENT OF DYNAMICS OF THE INDEX OF THE OF THE INNOVATION AND ITS INFLUENCE ON GROSS DOMESTIC PRODUCT OF LATVIA

ASSESSMENT OF DYNAMICS OF THE INDEX OF THE OF THE INNOVATION AND ITS INFLUENCE ON GROSS DOMESTIC PRODUCT OF LATVIA УПРАВЛЕНИЕ И УСТОЙЧИВО РАЗВИТИЕ 2/2013 (39) MANAGEMENT AND SUSTAINABLE DEVELOPMENT 2/2013 (39) ASSESSMENT OF DYNAMICS OF THE INDEX OF THE OF THE INNOVATION AND ITS INFLUENCE ON GROSS DOMESTIC PRODUCT OF

More information

Encapsulated Transformers 115V + 115V Primary, Low Profile

Encapsulated Transformers 115V + 115V Primary, Low Profile Features: Robust construction. Wide range of secondary voltages available. Single voltage and Dual voltage secondary combination. 2.0VA up to 52VA. CE marked. Designed and manufactured according to international

More information

Process-Controller HPP-25

Process-Controller HPP-25 Process-Controller HPP-25 Riveting process monitoring 6 different control parameters Touchscreen operation Windows diagnostics software... joining is our business Process-Controller HPP-25 Riveting process

More information

Communication systems for meters and remote reading of meters - Part 4: Wireless meter readout (Radio meter reading for operation in SRD bands)

Communication systems for meters and remote reading of meters - Part 4: Wireless meter readout (Radio meter reading for operation in SRD bands) Irish Standard Communication systems for meters and remote reading of meters - Part 4: Wireless meter readout (Radio meter reading for operation in SRD bands) CEN 2013 No copying without NSAI permission

More information

PU Flexible Foam Market Report Europe Ward Dupont EUROPUR President

PU Flexible Foam Market Report Europe Ward Dupont EUROPUR President PU Flexible Foam Market Report Europe Ward Dupont EUROPUR President Europur General Assembly Vienna June 2014 1 SLABSTOCK FLEXIBLE FOAM MARKET REVIEW I. General economic outlook II. 2013 Slabstock production

More information

Table of Contents Executive Summary 29

Table of Contents Executive Summary 29 Contents Table of Contents Executive Summary 29 Section 1: Introduction 33 Section 2: World 37 2.1.1. Main consumers 37 2.1.2. Main producers 2015 and 2016 39 2.1.3. Main importers 2015 and 2016 40 2.1.4.

More information

Time and Frequency Measurements for Oscillator Manufacturers

Time and Frequency Measurements for Oscillator Manufacturers Time and Frequency Measurements for Oscillator Manufacturers Using the FCA3000 and FCA3100 Series Timer/Counter/Analyzers Application Note Application Note Introduction Designing and manufacturing oscillators

More information

Technology Diffusion and Income Inequality:

Technology Diffusion and Income Inequality: Technology Diffusion and Income Inequality: how augmented Kuznets hypothesis could explain ICT diffusion? Miguel Torres Preto Motivation: Technology and Inequality This study aims at making a contribution

More information

Tolerances. Alloy groups. Tolerances

Tolerances. Alloy groups. Tolerances Tolerances We apply tolerances for shape and dimension according to CEN the European standardisation organisation, CEN; European Standard EN 755-9. On the following pages we publish an excerpt from this

More information

Welcome to the IFR Press Conference 30 August 2012, Taipei

Welcome to the IFR Press Conference 30 August 2012, Taipei Welcome to the IFR Press Conference 3 August 212, Taipei Continued success of the robotics industry Welcome by IFR President Dr. Shinsuke Sakakibara Presentation of the results of World Robotics 212 Industrial

More information

BenchTop Extraction Arms with unbeatable flexibility

BenchTop Extraction Arms with unbeatable flexibility BenchTop Extraction Arms with unbeatable flexibility A new generation of BenchTop extraction arms with unbeatable flexibility Nederman introduces a new generation of BenchTop arms the FX, FX and FX. These

More information

Western Europe 2017 FX

Western Europe 2017 FX 1 Road coverage Navigation SD card 8 GB ~100 % detailed street Important road 2 Sales arguments This SD card provides updated navigation data with a coverage of ~100 % of detailed roads in 28 European

More information

BenchTop Extraction Arms with unbeatable flexibility

BenchTop Extraction Arms with unbeatable flexibility BenchTop Extraction Arms with unbeatable flexibility A new generation of BenchTop extraction arms with unbeatable flexibility Nederman introduces a new generation of BenchTop arms the FX, FX and FX. These

More information

Does exposure to university research matter to high-potential entrepreneurship?

Does exposure to university research matter to high-potential entrepreneurship? Does exposure to university research matter to high-potential entrepreneurship? AIMILIA PROTOGEROU, YANNIS CALOGHIROU, NICHOLAS S. VONORTAS LABORATORY OF INDUSTRIAL AND ENERGY ECONOMICS, NATIONAL TECHNICAL

More information

International Standard

International Standard International Standard 4757 Cross recesses for screws Empreintes cnrciformes pour v First edition - 983-Wl UDC 62.882.25.6 f Ref. No. IS0 4757-983 (E) Descriptors : fasteners, screws, cruciform recessed

More information

Towards a New IP Consciousness in Universities and R&D Institutions: Case Show

Towards a New IP Consciousness in Universities and R&D Institutions: Case Show IP Policy for Universities and Research and Development Institutions Tallinn, Estonia April 3, 2014 Towards a New IP Consciousness in Universities and R&D Institutions: Case Show Laurent Manderieux L.

More information

Business Clusters and Innovativeness of the EU Economies

Business Clusters and Innovativeness of the EU Economies Business Clusters and Innovativeness of the EU Economies Szczepan Figiel, Professor Institute of Agricultural and Food Economics, National Research Institute, Warsaw, Poland Dominika Kuberska, PhD University

More information

Remote participation in Question sessions Audio options VoIP

Remote participation in Question sessions Audio options VoIP Remote participation in Question sessions Remote participation will use GoToMeeting. Participants must be registered to the SG13 meeting in der to be able to join 1. Use your laptop s microphone and speakers

More information

English Version EUROPEAN COMMITTEE FOR STANDARDIZATION COMITÉ EUROPÉEN DE NORMALISATION EUROPÄISCHES KOMITEE FÜR NORMUNG

English Version EUROPEAN COMMITTEE FOR STANDARDIZATION COMITÉ EUROPÉEN DE NORMALISATION EUROPÄISCHES KOMITEE FÜR NORMUNG EUROPEAN STANDARD NORME EUROPÉENNE EUROPÄISCHE NORM EN 10226-2 August 2005 ICS 21.040.30 English Version Pipe threads where pressure tight joints are made on the threads - Part 2: Taper external threads

More information

FA Wireless SS Terminals

FA Wireless SS Terminals FA Wireless SS Terminals WT30 Construct a Wireless System for ON/OFF Data Collection That Is Ideal for Monitoring Production Site Equipment Wireless Slave Station equipped with I/O. Height of 90 mm and

More information

Changes to university IPR regulations in Europe and their impact on academic patenting

Changes to university IPR regulations in Europe and their impact on academic patenting Changes to university IPR regulations in Europe and their impact on academic patenting Federica Rossi Birkbeck, University of London Aldo Geuna Universita di Torino Outline Changes in IPR regulations in

More information

DEUTSCHE NORM DIN EN ISO 10447

DEUTSCHE NORM DIN EN ISO 10447 DEUTSCHE NORM DIN EN ISO 10447 September 2007 D ICS 25.160.40 Supersedes DIN ISO 10447:1994-11 Resistance welding Peel and chisel testing of resistance spot and projection welds (ISO 10447:2006) English

More information

This document is a preview generated by EVS

This document is a preview generated by EVS CEN WORKSHOP AGREEMENT CWA 17327 September 2018 ICS 03.080.30; 03.200.01 English version Hotel General Manager - Knowledge, skills and competence requirements This CEN Workshop Agreement has been drafted

More information

The 6 metre band 50 to 52 MHz

The 6 metre band 50 to 52 MHz The 6 metre band 50 to 52 MHz Varna 2014 Frequency 50.000 50.100 50.100 50.200 50.200 50.300 50.300 50.400 50.400 50.500 50.500 52.000 Maximum Bandwidth 500 Hz 1 000 Hz Mode exclusive (except Beacon Project)

More information

CRC Association Conference

CRC Association Conference CRC Association Conference Brisbane, 17 19 May 2011 Productivity and Growth: The Role and Features of an Effective Innovation Policy Jonathan Coppel Economic Counsellor to OECD Secretary General 1 Outline

More information

Engineered for optimised photo production Small angle rotation

Engineered for optimised photo production Small angle rotation Epson OrderController Software Engineered for optimised photo production Small angle rotation Brightness, contrast, skin-smoothing and many other great features Red eye removal Advanced trimming function

More information

General Questionnaire

General Questionnaire General Questionnaire CIVIL LAW RULES ON ROBOTICS Disclaimer This document is a working document of the Committee on Legal Affairs of the European Parliament for consultation and does not prejudge any

More information

Open School Education 2030 Starting off

Open School Education 2030 Starting off Open School Education 2030 Starting off Open Education 2030: Exploiting the Potential of OER for School Education - A Foresight Workshop - Seville, 28-29 May 2013 Jonatan Castaño Muñoz Christine Redecker

More information

Fasteners Torque/clamp force testing (ISO 16047:2005)

Fasteners Torque/clamp force testing (ISO 16047:2005) SVENSK STANDARD SS- Fastställd 2005-02-18 Utgåva 1 Fästelement Provning av moment/kraftutbyte (ISO 16047:2005) Fasteners Torque/clamp force testing (ISO 16047:2005) ICS 21.060.01 Språk: engelska Publicerad:

More information

EU businesses go digital: Opportunities, outcomes and uptake

EU businesses go digital: Opportunities, outcomes and uptake Digital Transformation Scoreboard 2018 EU businesses go digital: Opportunities, outcomes and uptake February 2018 Internal Market, Industry, Entrepreneurship and SMEs Executive summary Conditions and outcomes

More information