* --- Alle labels kan nu bestemmes i PROC PRINT ;

Size: px
Start display at page:

Download "* --- Alle labels kan nu bestemmes i PROC PRINT -------;"

Transcription

1 Foredrag på SAS Forum, 18. september 2013 Nyheder i SAS 9.4 for SAS programmører, Georg Morsing Program 1 * --- Alle labels kan nu bestemmes i PROC PRINT ; proc print data=sashelp.cars label grandtotal_label='total for begge biler' sumlabel='subtotal' noobs; where make in ('Audi','BMW') and invoice > 40000; by make ; var model invoice; sum Invoice; label invoice='pris' make ='Producent'; Program 2 /* --- Ny option CUROBS til SET og MODIFY statements --- */ data piger; set sashelp.class curobs=obs; where sex='f'; obs_num=obs;

2 Program 3 /* --- Ændring i SCAN funktion. Ny variabel er ikke Længere 200 lang, men længden af det første argument --- */ data; Navn='Georg Morsing'; e_navn=scan(navn,2); Program 4 /* --- Ny options til PUTC og PUTN funktioner --- */ proc format; value agefmt 10-13='10-13 år' 14-16='14-16 år'; length alder alder_c alder_r $ 20; alder = putn(age,'agefmt.'); alder_c = putn(age,'agefmt.-c',20); alder_r = putn(age,'agefmt.-r',20); if _n_=1 then do; put '*' alder $char20. '*'; put '*' alder_c $char20. '*'; put '*' alder_r $char20. '*';

3 Program 5 /* --- Ny DOSUBL funktion til at udføre SAS kode midt i et data step */ Navn='Georg'; rc=dosubl('proc sql; select count(age) into :antal from sashelp.class;'); hvor_mange= symgetn("antal"); rc=dosubl('proc sql noprint; select avg(weight) into :w from sashelp.class;'); avg_weight= symgetn("w"); if sex='f' then rc=dosubl('proc sql noprint; select avg(weight) into :w from sashelp.class where sex="f";'); if sex='m' then rc=dosubl('proc sql noprint; select avg(weight) into :w from sashelp.class where sex="m";'); avg_weight= symgetn("w"); Program 6 libname orion 'C:\Georg\SAS Forum DK 2013\SAS 9_4\Data'; data find_priser; input product_id; datalines; ;

4 /* --- Multiple key værdier i et HASH objekt SAS */ data prices; if _N_ = 1 then do; if 0 then set orion.price_list; declare hash price(dataset: "orion.price_list", multidata: "y"); price.definekey("product_id"); price.definedata("start_date", "end_date", "unit_sales_price"); price.definedone(); set work.find_priser; if price.find()=0 then do; output; price.has_next(result: next); do while(next = 1); price.find_next(); output; price.has_next(result: next); keep product_id start_date end_date unit_sales_price; /* --- Multiple key værdier i et HASH objekt SAS */ data prices; if _N_ = 1 then do; if 0 then set orion.price_list; declare hash price(dataset: "orion.price_list", multidata: "y"); price.definekey("product_id"); price.definedata("start_date", "end_date", "unit_sales_price"); price.definedone(); set work.find_priser; if price.find()=0 then do; price.reset_dup(); do while(price.do_over() eq 0); output; keep product_id start_date end_date unit_sales_price;

5 Program 7 /* --- VBUFSIZE option er buffer størrelse til data step views --- */ /* --- Sæt VBUFSIZE til samme værdi som bufsize på input tabel --- */ proc options option=vbufsize ; data test(bufsize=1m); length text $ 400; retain text 'Meget lang text'; do I=1 to ; x= round(ranuni(0)); output; proc contents data=test; data test2 / view=test2; set test; y=x*.5; Proc means data=test2; var x y; options vbufsize=1m; Proc means data=test2; var x y;

6 Program 8 /* --- Bevar alt i din SAS session til senere --- */ options presenv; %let navn=georg Morsing; data piger drenge; if sex='f' then output piger; else if sex='m' then output drenge; libname sasdata 'c:\temp\data'; filename programs 'c:\temp\programs.sas'; proc presenv save permdir=sasdata sascode=programs; /* --- Hent den SAS session du sluttede med sidst --- */ %include 'c:\temp\programs.sas'; Run;

7 Program 9 /* --- Ny system options, besked om manglende initialization ---*/ options varinitchk=note; length gruppe $ 10; options varinitchk=nonote; length gruppe $ 10; options varinitchk=warning; length gruppe $ 10; options varinitchk=error; if weihgt > 100 then gruppe='større end 100';

8 Program 10 title;footnote; /* --- Placer flere typer af output på samme side --- */ /* --- Eksempel */ ods layout gridded columns=2; ods region; proc print data=sashelp.class; ods region; proc print data=sashelp.class; ods layout /* --- Eksempel */ ods layout gridded rows=3 row_heights=(1in 2in 3in); ods region; proc print data=sashelp.class(obs=1); ods region; proc means data=sashelp.class n mean; ods region; proc print data=sashelp.class(obs=3); ods layout

9 Program 12 options nonumber nodate; /* -- Send rapporter og grafer direkte til Powerpoint -- */ ods powerpoint file='c:\temp\georg.ppt' style=htmlblue; proc sgplot data=sashelp.class; bubble x=age y=height size=weight / group=sex datalabel=name transparency=.3 ; yaxis grid; proc sgpanel data=sashelp.class; panelby sex; bubble x=age y=height size=weight / datalabel=name transparency=.3 ; rowaxis grid; ods powerpoint close; Program 13 /* --- Danne powerpoint slides med PROC ODSTEXT */ title; ods powerpoint file='c:\temp\georg.ppt' layout=titleslide; proc odstext; p 'Denne tekst er dannet med den nye PROC ODSTEXT' / style=presentationtitle; p 'SAS Forum 2013, Georg Morsing' / style=presentationtitle; ods powerpoint layout=_null_; proc sgplot data=sashelp.class; bubble x=age y=height size=weight / group=sex datalabel=name transparency=.3 ; yaxis grid; ods powerpoint close;

10 Program 14 /* --- Send output til mobile enheder --- */ ods graphics; ods epub file='c:\temp\bubleplot.epub' title='analyse' options(creator='georg'); proc freq data=sashelp.class; tables age*sex / plots=freqplot nocol norow nopercent; ods epub close; Program 15 /* --- DATA Step 2, udnyt flere CPU'er --- */ data work.jmaster; do j = 1 to ; output; /* Definer koden der skal køres */ proc ds2; thread r /overwrite=yes; dcl double count; dcl double k; dcl double x; method run(); set {select * from work.jmaster}; count+1; do k=1 to 100; x=k/count + k/count + k/count;

11 method term(); OUTPUT; endthread; quit; /* 1 thread */ proc ds2; data j1(overwrite=yes); dcl thread r r_instance; dcl double count; dcl double total; method run(); set from r_instance threads=1; total+count; enddata; quit; /* 8 threads */ proc ds2; data j8(overwrite=yes); dcl thread r r_instance; dcl double count; dcl double total; method run(); set from r_instance threads=8; total+count; enddata; quit; title;footnote; proc print data=j8(obs=5); var j count total;

Nyheter i SAS9.4 för programmerare

Nyheter i SAS9.4 för programmerare Nyheter i SAS9.4 för programmerare Georgios Karagiannis, Technical Support Copyright 2010 SAS Institute Inc. All rights reserved. PROC PRINT labels proc print data=sashelp.cars label grandtotal_label='total

More information

Opdatering af metadata via SAS -programmer

Opdatering af metadata via SAS -programmer Opdatering af metadata via SAS -programmer Henrik Dorf, chefkonsulent, PS Commercial Metadata SAS Management Console Meta browser SAS Data Integration Studio SAS Metadata Server Administrerer adgangen

More information

SAS Intelligence Database Teknikken bag den nye database

SAS Intelligence Database Teknikken bag den nye database SAS Intelligence Database Teknikken bag den nye database Georg Morsing Georg.Morsing@sdk.sas.com SAS Institute A/S Ny databaseteknologi til enterprise intelligence RDBMS SAS Intelligence Database Information

More information

SAS programmer til Proc Means indlæg af Per Andersen / Capgemini Danmark A/S

SAS programmer til Proc Means indlæg af Per Andersen / Capgemini Danmark A/S SAS programmer til Proc Means indlæg af Per Andersen / Capgemini Danmark A/S Simpelt eksempel. * nulstiller output vindue og log vindue title1 "Simpel eksempel på brug af Proc Means" class salgskontor

More information

Join af tabeller med SAS skal det være hurtigt?

Join af tabeller med SAS skal det være hurtigt? Join af tabeller med SAS skal det være hurtigt? Henrik Dorf, chefkonsulent, PS Commercial Join af tabeller Skal det være hurtigt kræver det Valgmuligheder Viden Eksperimenter Historien En af de første

More information

SPDE. Lagring af større datamængder. make connections share ideas be inspired. Henrik Dorf Chefkonsulent SAS Institute A/S

SPDE. Lagring af større datamængder. make connections share ideas be inspired. Henrik Dorf Chefkonsulent SAS Institute A/S make connections share ideas be inspired SPDE Lagring af større datamængder Henrik Dorf Chefkonsulent SAS Institute A/S SPDE Scalable Performance Data Engine I/O delen af SPDServer software Følger med

More information

DO, DON T og DORF. SAS -programmering

DO, DON T og DORF. SAS -programmering DO, DON T og DORF SAS -programmering Copyright 2002-2011, SAS Institute Inc., Cary, NC, USA SAS Institute Inc., SAS Campus Drive, Cary, North Carolina 27513. SAS and all other SAS Institute Inc. product

More information

SAS og Excel. Kender du fem forskellige måder at overføre data mellem SAS og Excel? Gert Nissen, seniorkonsulent

SAS og Excel. Kender du fem forskellige måder at overføre data mellem SAS og Excel? Gert Nissen, seniorkonsulent SAS og Excel Kender du fem forskellige måder at overføre data mellem SAS og Excel? Gert Nissen, seniorkonsulent Copyright 2011 SAS Institute Inc. All rights reserved. Indhold Introduktion 5 metoder Konklusion

More information

Beyond the Basics: Advanced REPORT Procedure Tips and Tricks Updated for SAS 9.2 Allison McMahill Booth, SAS Institute Inc.

Beyond the Basics: Advanced REPORT Procedure Tips and Tricks Updated for SAS 9.2 Allison McMahill Booth, SAS Institute Inc. ABSTRACT PharmaSUG 2011 - Paper SAS-AD02 Beyond the Basics: Advanced REPORT Procedure Tips and Tricks Updated for SAS 9.2 Allison McMahill Booth, SAS Institute Inc., Cary, NC, USA This paper is an update

More information

Gør dine big data klar til analyse på en nem måde med Hadoop og SAS Data Loader for Hadoop. Jens Dahl Mikkelsen SAS Institute

Gør dine big data klar til analyse på en nem måde med Hadoop og SAS Data Loader for Hadoop. Jens Dahl Mikkelsen SAS Institute Gør dine big data klar til analyse på en nem måde med Hadoop og SAS Data Loader for Hadoop Jens Dahl Mikkelsen SAS Institute Indhold Udfordringer for analytikeren Hvordan kan SAS Data Loader for Hadoop

More information

VHDL programmering H2

VHDL programmering H2 VHDL programmering H2 VHDL (Very high speed Integrated circuits) Hardware Description Language IEEE standard 1076-1993 Den benytter vi!! Hvornår blev den frigivet som standard første gang?? Ca. 1980!!

More information

Paper SAS033-2014 Techniques in Processing Data on Hadoop

Paper SAS033-2014 Techniques in Processing Data on Hadoop Paper SAS033-2014 Techniques in Processing Data on Hadoop Donna De Capite, SAS Institute Inc., Cary, NC ABSTRACT Before you can analyze your big data, you need to prepare the data for analysis. This paper

More information

Agil Business Process Management - i Finans

Agil Business Process Management - i Finans Agil Business Process Management - i Finans Thomas Hildebrandt Lektor, PhD Leder af gruppen for Proces- & Systemmodeller ved IT Universitetet i København og Interessegruppen for processer og IT ved Infinit

More information

my students are encouraged to think rather than just listen evaluations of my lectures improved significantly

my students are encouraged to think rather than just listen evaluations of my lectures improved significantly clickers evaluations of my lectures improved significantly clicker questions force me to think about what the most important messages of my lectures are with clickers it is difficult for students to hide

More information

CLUSTER ANALYSIS. Kingdom Phylum Subphylum Class Order Family Genus Species. In economics, cluster analysis can be used for data mining.

CLUSTER ANALYSIS. Kingdom Phylum Subphylum Class Order Family Genus Species. In economics, cluster analysis can be used for data mining. CLUSTER ANALYSIS Introduction Cluster analysis is a technique for grouping individuals or objects hierarchically into unknown groups suggested by the data. Cluster analysis can be considered an alternative

More information

Kogebogs HelloWorld øvelser i.net Remoting

Kogebogs HelloWorld øvelser i.net Remoting Kogebogs HelloWorld øvelser i.net Remoting Denne øvelse viser hvordan en simpel.net Remoting client / server applikation kan konstrueres. Der arbejdes med et simpelt, men klassisk, HelleWorld program,

More information

Guido s Guide to PROC FREQ A Tutorial for Beginners Using the SAS System Joseph J. Guido, University of Rochester Medical Center, Rochester, NY

Guido s Guide to PROC FREQ A Tutorial for Beginners Using the SAS System Joseph J. Guido, University of Rochester Medical Center, Rochester, NY Guido s Guide to PROC FREQ A Tutorial for Beginners Using the SAS System Joseph J. Guido, University of Rochester Medical Center, Rochester, NY ABSTRACT PROC FREQ is an essential procedure within BASE

More information

This can be useful to temporarily deactivate programming segments without actually deleting the statements.

This can be useful to temporarily deactivate programming segments without actually deleting the statements. EXST 700X SAS Programming Tips Page 1 SAS Statements: All SAS statements end with a semicolon, ";". A statement may occur on one line, or run across several lines. Several statements can also be placed

More information

Information og dokumentation Ledelsessystem for dokumentstyring Krav

Information og dokumentation Ledelsessystem for dokumentstyring Krav Dansk standard DS/ISO 30301 1. udgave 2011-11-22 Information og dokumentation Ledelsessystem for dokumentstyring Krav Information and documentation Management systems for records Requirements DS/ISO 30301

More information

Student evaluation form

Student evaluation form Student evaluation form Back Number of respondents: 17 1. Multiple choice question Percentage Name of course: [Insert name of course here!] Course Objectives: [Insert course objectives (målbeskrivelse)

More information

Methodologies for Converting Microsoft Excel Spreadsheets to SAS datasets

Methodologies for Converting Microsoft Excel Spreadsheets to SAS datasets Methodologies for Converting Microsoft Excel Spreadsheets to SAS datasets Karin LaPann ViroPharma Incorporated ABSTRACT Much functionality has been added to the SAS to Excel procedures in SAS version 9.

More information

Customizing FREQ Procedure Output in SAS 9.2

Customizing FREQ Procedure Output in SAS 9.2 Technical Paper Customizing FREQ Procedure Output in SAS 9.2 Introducing the new crosstabulation table template for multi-way tables and SAS ODS Graphics options Table of Contents Introduction...1 The

More information

OIOudvalget for e-handel. 14. September 2010 Ole Madsen

OIOudvalget for e-handel. 14. September 2010 Ole Madsen OIOudvalget for e-handel 14. September 2010 Ole Madsen ForsyningsSpecifikation UtilityStatement (UTS) En OIOUBL faktura/kreditnota kan nu have en reference til et (eller flere) UTS dokument(er) Det Offentlige

More information

Daniel.Ringquist@swe.sas.com Copyright 2003, SAS Institute Inc. All rights reserved.

Daniel.Ringquist@swe.sas.com Copyright 2003, SAS Institute Inc. All rights reserved. ODS i SAS 9 - Nyheter Daniel.Ringquist@swe.sas.com Copyright 2003, SAS Institute Inc. All rights reserved. Agenda ODS och SAS Language (datasteget) ODS Layout Copyright 2003, SAS Institute Inc. All rights

More information

TESTDATABASE. Deviations and Reporting

TESTDATABASE. Deviations and Reporting TESTDATABASE Deviations and Reporting FORORD I denne samlingen er det skripter som ble brukt for å opprette tabeller i test-database og fylle dem med fiktive data. Siden vi ikke fikk tilgang til CEMAsys

More information

THE ROTARY FOUNDATION. Det hele begyndte med at Arch Klump fik en idé i 1917!

THE ROTARY FOUNDATION. Det hele begyndte med at Arch Klump fik en idé i 1917! THE ROTARY FOUNDATION Det hele begyndte med at Arch Klump fik en idé i 1917! JE: Kommentarer: Det hele var Arch Klump s ide som RI president i 1917-1 mands ide ligesom Poul Harris. Det første bidrag kom

More information

Salary. Cumulative Frequency

Salary. Cumulative Frequency HW01 Answering the Right Question with the Right PROC Carrie Mariner, Afton-Royal Training & Consulting, Richmond, VA ABSTRACT When your boss comes to you and says "I need this report by tomorrow!" do

More information

<Matthías saga digitalis 6.0/>

<Matthías saga digitalis 6.0/> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

More information

How To Boot A Cisco Ip Phone From A Cnet Vlan To A Vlan On A Cpower Box On A Ip Phone On A Network With A Network Vlan (Cisco) On A Powerline (Ip Phone) On An

How To Boot A Cisco Ip Phone From A Cnet Vlan To A Vlan On A Cpower Box On A Ip Phone On A Network With A Network Vlan (Cisco) On A Powerline (Ip Phone) On An IP Telefoni DHCP Options VLANs Understanding the Cisco IP Phone Boot Process The Cisco IP Phone connects to an Ethernet switchport. If the IP phone and switch support PoE, the IP phone receives power through

More information

INFORMATION STRUCTURE ANNOTATION IN DanPASS. Patrizia Paggio patrizia@cst.dk August 2006

INFORMATION STRUCTURE ANNOTATION IN DanPASS. Patrizia Paggio patrizia@cst.dk August 2006 INFORMATION STRUCTURE ANNOTATION IN DanPASS Patrizia Paggio patrizia@cst.dk August 2006 The annotation of information structure in DanPASS consists in the assignment of topic (T) and focus (F) tags to

More information

Softwareudvikling Retningslinjer for anvendelse af ISO 9001:2008 til computersoftware

Softwareudvikling Retningslinjer for anvendelse af ISO 9001:2008 til computersoftware Dansk standard DS/ISO/IEC 90003:2015 2. udgave 2015-01-07 Softwareudvikling Retningslinjer for anvendelse af ISO 9001:2008 til computersoftware Software engineering Guidelines for the application of ISO

More information

Tales from the Help Desk 3: More Solutions for Simple SAS Mistakes Bruce Gilsen, Federal Reserve Board

Tales from the Help Desk 3: More Solutions for Simple SAS Mistakes Bruce Gilsen, Federal Reserve Board Tales from the Help Desk 3: More Solutions for Simple SAS Mistakes Bruce Gilsen, Federal Reserve Board INTRODUCTION In 20 years as a SAS consultant at the Federal Reserve Board, I have seen SAS users make

More information

Software- og systemudvikling Softwaretest Del 1: Begreber og definitioner

Software- og systemudvikling Softwaretest Del 1: Begreber og definitioner Dansk standard DS/ISO/IEC/IEEE 29119-1 1. udgave 2013-09-26 Software- og systemudvikling Softwaretest Del 1: Begreber og definitioner Software and systems engineering Software testing Part 1: Concepts

More information

Informationsteknologi Små computersystemers. Del 251: USB-fæstnet SCSI (UAS)

Informationsteknologi Små computersystemers. Del 251: USB-fæstnet SCSI (UAS) Dansk standard DS/ISO/IEC 14776-251 1. udgave 2014-05-27 Informationsteknologi Små computersystemers grænseflade (SCSI) Del 251: USB-fæstnet SCSI (UAS) Information technology Small computer system interface

More information

The Basics of Creating Graphs with SAS/GRAPH Software Jeff Cartier, SAS Institute Inc., Cary, NC

The Basics of Creating Graphs with SAS/GRAPH Software Jeff Cartier, SAS Institute Inc., Cary, NC Paper 63-27 The Basics of Creating Graphs with SAS/GRAPH Software Jeff Cartier, SAS Institute Inc., Cary, NC ABSTRACT SAS/GRAPH software is a very powerful tool for creating a wide range of business and

More information

National strategi for Datamanagement Input fra Bevaring, Formidling og Genbrug. Birte Christensen-Dalsgaard Det Kongelige Bibliotek

National strategi for Datamanagement Input fra Bevaring, Formidling og Genbrug. Birte Christensen-Dalsgaard Det Kongelige Bibliotek National strategi for Datamanagement Input fra Bevaring, Formidling og Genbrug Birte Christensen-Dalsgaard Det Kongelige Bibliotek Disposition Hvad er forskningsdata Hvorfor skulle forskere være interesseret?

More information

Introduktion til distribuerede systemer uge 37 - fil og webserver

Introduktion til distribuerede systemer uge 37 - fil og webserver Introduktion til distribuerede systemer uge 37 - fil og webserver Rune Højsgaard 090678 1. delsstuderende 13. september 2005 1 Kort beskrivelse Implementationen af filserver og webserver virker, men håndterer

More information

OIO Dekstop applikation

OIO Dekstop applikation OIO Dekstop applikation 25-09-2009. Version 1.0 Sammendrag af ideer og dialog på møde d. 24-09-2009 mellem ITST, Trifork og Designit Under udarbejdelse Diagram Test applikation Grupper Digitaliser.dk Applikation

More information

Informationsteknologi Serviceledelse Del 4: Procesreferencemodel

Informationsteknologi Serviceledelse Del 4: Procesreferencemodel DS-information DS/ISO/IEC TR 20000-4 1. udgave 2010-12-14 Informationsteknologi Serviceledelse Del 4: Procesreferencemodel Information technology Service management Part 4: Process reference model DS/ISO/IEC

More information

Informationsteknologi Serviceledelse Del 3: Vejledning i definition af emne og brug af ISO/IEC 20000-1

Informationsteknologi Serviceledelse Del 3: Vejledning i definition af emne og brug af ISO/IEC 20000-1 DS-information DS/ISO/IEC TR 20000-3 1. udgave 2009-10-21 Informationsteknologi Serviceledelse Del 3: Vejledning i definition af emne og brug af ISO/IEC 20000-1 Information technology Service management

More information

1) Testing of general knowledge 25%. Each right question counts 1. Each wrong counts 0.5. Empty

1) Testing of general knowledge 25%. Each right question counts 1. Each wrong counts 0.5. Empty 1 Exam 2 The exam consists of four parts: 1) Testing of general knowledge 25%. Each right question counts 1. Each wrong counts 0.5. Empty counts zero. See below note about Task 1. 2) Planning 20%. All

More information

SAS Education Providing knowledge through global training and certification. SAS Foundation. Kursöversikt 2010

SAS Education Providing knowledge through global training and certification. SAS Foundation. Kursöversikt 2010 Kursöversikt 2010 SAS Education Providing knowledge through global training and certification SAS Foundation SAS Forum 2010 och specialkurser SAS Master Class Kontaktinformation Stora Frösunda Gård Box

More information

Marie Tygesen Dalsgärd Hansen 18 October 2009 General Observations Head/Neck Connections Joint stability Functional improvements include

Marie Tygesen Dalsgärd Hansen 18 October 2009 General Observations Head/Neck Connections Joint stability Functional improvements include Name Marie Tygesen Dalsgärd Hansen ABR Denmark ApS ABR Denmark ApS Starting Date: February 2008 Report Date: 18 October 2009 General Observations Since Marie started with the ABR Program in February 2008,

More information

Constructing a Table of Survey Data with Percent and Confidence Intervals in every Direction

Constructing a Table of Survey Data with Percent and Confidence Intervals in every Direction Constructing a Table of Survey Data with Percent and Confidence Intervals in every Direction David Izrael, Abt Associates Sarah W. Ball, Abt Associates Sara M.A. Donahue, Abt Associates ABSTRACT We examined

More information

DS2 with Both Hands on the Wheel. Peter Eberhardt, Fernwood Consulting Group Inc., Toronto, ON

DS2 with Both Hands on the Wheel. Peter Eberhardt, Fernwood Consulting Group Inc., Toronto, ON Paper 2523-2015 DS2 with Both Hands on the Wheel Peter Eberhardt, Fernwood Consulting Group Inc., Toronto, ON Xue Yao, Winnipeg Regional Health Authority, Winnipeg, MB ABSTRACT The DATA Step has served

More information

GB INTRODUCTION manual:

GB INTRODUCTION manual: GS - GS/L S2/S4 4 5 GB INTRODUCTION manual: Manufacturing Firm; The person responsible for the use of the fork truck must make sure that all of the safety rules in force in INSTRUCTIONS FOR USE 1) Do not

More information

Packaging Linear bar code and twodimensional symbols for product packaging

Packaging Linear bar code and twodimensional symbols for product packaging Dansk standard DS/ISO 22742 1. udgave 2005-03-17 Emballage Lineær stregkode og todimensionelle symboler for emballage til produkter Packaging Linear bar code and twodimensional symbols for product packaging

More information

Nordic Master in Didactics of Mathematics

Nordic Master in Didactics of Mathematics Nordic Master in Didactics of Mathematics NORDIMA Barbro Grevholm Seminar i Bergen den 7-8 september 2011 Nordic Master in Didactics of Mathematics Project number NMP-2009/10730 The Master Consortium consists

More information

Vejledning til en europæisk COREfaktura-datamodel. CII-retningslinjer for implementering Del 1: Introduktion

Vejledning til en europæisk COREfaktura-datamodel. CII-retningslinjer for implementering Del 1: Introduktion DS-information DS/CWA 16356-1 1. udgave 2011-11-09 Vejledning til en europæisk COREfaktura-datamodel med UN/CEFACT CII-retningslinjer for implementering Del 1: Introduktion Guide for a European CORE INVOICE

More information

Questionnaire #1: The Patient (Spørgeskema, må gerne besvares på dansk)

Questionnaire #1: The Patient (Spørgeskema, må gerne besvares på dansk) Table of Contents Questionnaire #1: The Patient... 2 Questionnaire #2: The Medical Staff... 4 Questionnaire #3: The Visitors... 6 Questionnaire #4: The Non-Medical Staff... 7 Page1 Questionnaire #1: The

More information

Creating Dynamic Reports Using Data Exchange to Excel

Creating Dynamic Reports Using Data Exchange to Excel Creating Dynamic Reports Using Data Exchange to Excel Liping Huang Visiting Nurse Service of New York ABSTRACT The ability to generate flexible reports in Excel is in great demand. This paper illustrates

More information

SRX. SRX Firewalls. Rasmus Elmholt V1.0

SRX. SRX Firewalls. Rasmus Elmholt V1.0 SRX SRX Firewalls Rasmus Elmholt V1.0 Deployment Branch SRX Series SRX100, SRX110, SRX210, SRX220, SRX240, SRX550, SRX650 Fokus for dette kursus Data Center SRX Series SRX1400, SRX3400, SRX3600, SRX5400,

More information

Oversættelse af symbolsk maskinsprog. Sammenkædning og indlæsning af maskinsprog

Oversættelse af symbolsk maskinsprog. Sammenkædning og indlæsning af maskinsprog Oversættelse af symbolsk maskinsprog Sammenkædning og indlæsning af maskinsprog Niveauer af abstrakte maskiner Spørgsmål... Hvordan bruges asm-niveauet? metode til programmering Hvordan stilles asm-niveauet

More information

Softwareudvikling Kvalitetskrav til og evaluering af softwareprodukter (SQuaRE) Fælles industriformat (CIF) til brugbare testrapporter

Softwareudvikling Kvalitetskrav til og evaluering af softwareprodukter (SQuaRE) Fælles industriformat (CIF) til brugbare testrapporter Dansk standard DS/ISO/IEC 25062 1. udgave 2008-05-08 Softwareudvikling Kvalitetskrav til og evaluering af softwareprodukter (SQuaRE) Fælles industriformat (CIF) til brugbare testrapporter Software engineering

More information

SAP Best Practices. Færdigpakket branchespecifik og brancheovergribende knowhow. Tilgængelighed for SAP-kunder og SAP-partnere

SAP Best Practices. Færdigpakket branchespecifik og brancheovergribende knowhow. Tilgængelighed for SAP-kunder og SAP-partnere SAP Best Practices Færdigpakket branchespecifik og brancheovergribende knowhow Tilgængelighed for SAP-kunder og SAP-partnere 1. Tilgængelighed af SAP Best Practices 2. Download af SAP Best Practices Tilgængelighed

More information

Informationsteknologi Personlig identifikation ISO-overensstemmende kørekort Del 4: Prøvningsmetoder

Informationsteknologi Personlig identifikation ISO-overensstemmende kørekort Del 4: Prøvningsmetoder Dansk standard DS/ISO/IEC 18013-4 1. udgave 2012-01-11 Informationsteknologi Personlig identifikation ISO-overensstemmende kørekort Del 4: Prøvningsmetoder Information technology Personal identification

More information

Revolusjonen COPYRIGHT NOTICE

Revolusjonen COPYRIGHT NOTICE Revolusjonen COPYRIGHT NOTICE The creative work in this presentation is protected by copyright. Redistribution or commercial use 2003: Facemash Dating? 2004: THEFACEBOOK.COM 2004: Facebook.com 25/8-2011:736

More information

Jordundersøgelser Prøvetagning Del 5: Vejledning i undersøgelse af jordforurening på bymæssige og industrielle grunde

Jordundersøgelser Prøvetagning Del 5: Vejledning i undersøgelse af jordforurening på bymæssige og industrielle grunde Dansk standard DS/ISO 10381-5 1. udgave 2005-11-09 Jordundersøgelser Prøvetagning Del 5: Vejledning i undersøgelse af jordforurening på bymæssige og industrielle grunde Soil quality Sampling Part 5: Guidance

More information

Managing very large EXCEL files using the XLS engine John H. Adams, Boehringer Ingelheim Pharmaceutical, Inc., Ridgefield, CT

Managing very large EXCEL files using the XLS engine John H. Adams, Boehringer Ingelheim Pharmaceutical, Inc., Ridgefield, CT Paper AD01 Managing very large EXCEL files using the XLS engine John H. Adams, Boehringer Ingelheim Pharmaceutical, Inc., Ridgefield, CT ABSTRACT The use of EXCEL spreadsheets is very common in SAS applications,

More information

Informationsteknologi Personlig identifikation ISO-overensstemmende kørekort Del 2: Maskinlæsbare teknologier

Informationsteknologi Personlig identifikation ISO-overensstemmende kørekort Del 2: Maskinlæsbare teknologier Dansk standard Rettelsesblad DS/ISO/IEC 18013-2/Corr. 1 1. udgave 2012-01-25 Informationsteknologi Personlig identifikation ISO-overensstemmende kørekort Del 2: Maskinlæsbare teknologier Information technology

More information

Claus B. Jensen IT Auditor, CISA, CIA

Claus B. Jensen IT Auditor, CISA, CIA Claus B. Jensen IT Auditor, CISA, CIA I am employed in Rigsrevisionen, Denmark. (Danish National Audit Office) I have worked within IT Audit since 1995, both as internal and external auditor and now in

More information

How To Write An International Safety Standard

How To Write An International Safety Standard Dansk standard DS/ISO 26262-6 1. udgave 2012-01-11 Motorkøretøjer Funktionssikkerhed Del 6: Produktudvikling på softwareniveau Road vehicles Functional safety Part 6: Product development at the software

More information

Preparing your data for analysis using SAS. Landon Sego 24 April 2003 Department of Statistics UW-Madison

Preparing your data for analysis using SAS. Landon Sego 24 April 2003 Department of Statistics UW-Madison Preparing your data for analysis using SAS Landon Sego 24 April 2003 Department of Statistics UW-Madison Assumptions That you have used SAS at least a few times. It doesn t matter whether you run SAS in

More information

Hvor parat er din virksomhed? Motivation for systematisk serviceudvikling i den maritime branche

Hvor parat er din virksomhed? Motivation for systematisk serviceudvikling i den maritime branche Hvor parat er din virksomhed? Motivation for systematisk serviceudvikling i den maritime branche Section for Engineering Design and Product Development Generelle trends med service BNP fordeling i USA

More information

Vejen til privat finansiering. 16. juni 2011

Vejen til privat finansiering. 16. juni 2011 Vejen til privat finansiering 16. juni 2011 Vejen til privat finansiering 1 Præsentation 2 Investor og banken din første kunde 3 Struktureret søgning 4 Netværk til finansiering 5 Case Intelligent styring

More information

Indenfor projektledelse

Indenfor projektledelse Best Practice Indenfor projektledelse 14. maj 2007 Agenda Position of PRINCE2, IMPA and PMI to other methods and standards Explain structure and concepts of the IPMA PMI, and PRINCE2 Other Standards and

More information

How To Price Power In Norsk

How To Price Power In Norsk Electricity consumption should there be a limit? Implications of people s attitudes for the development of sustainable pricing systems Behave Conference Hege Westskog and Tanja Winther Background for the

More information

EGA HANDICAP- SYSTEM 2016-2019. Hovedsponsor:

EGA HANDICAP- SYSTEM 2016-2019. Hovedsponsor: EGA HANDICAP- SYSTEM 2016-2019 Hovedsponsor: INDHOLDS (I) FOREWORD 3 (II) PRINCIPAL CHANGES 2016 4 (III) HOW TO USE THE MANUAL 5 (IV) EGA HANDICAP POLICY 6 (V) SYSTEM OVERVIEW 8 THE EGA HANDICAP SYSTEM

More information

Building a Better Dashboard Using Base SAS Software

Building a Better Dashboard Using Base SAS Software PharmaSUG 2016 Paper AD12 Building a Better Dashboard Using Base SAS Software Kirk Paul Lafler, Software Intelligence Corporation, Spring Valley, California Roger Muller, Data-To-Events, Indianapolis,

More information

Enterprise productivity and collaboration. JorgenR@microsoft.com

Enterprise productivity and collaboration. JorgenR@microsoft.com Enterprise productivity and collaboration JorgenR@microsoft.com About this Presentation Disclaimer This presentation contains preliminary information that may be changed substantially prior to final commercial

More information

BALLOMAX PN16 / 40, DN 10-50

BALLOMAX PN16 / 40, DN 10-50 BALLOMAX PN6 / 40, DN 0-50 helsvejset stålkugleventil Fully-welded steel ball valve 0 2 3 6 4 7 5 A B 2 3 4 5 6 Benævnelse Materiale Article Material Svejseende Stål St 37.0 Welding end Steel St 37.0 A

More information

Statistiske metoder i procesledelse Kapabilitet og performance Del 3: Analyse af maskinperformance for måleværdier på (diskrete) emner

Statistiske metoder i procesledelse Kapabilitet og performance Del 3: Analyse af maskinperformance for måleværdier på (diskrete) emner Dansk standard DS/ISO 22514-3 1. udgave 2008-05-08 Statistiske metoder i procesledelse Kapabilitet og performance Del 3: Analyse af maskinperformance for måleværdier på (diskrete) emner Statistical methods

More information

Hvis personallisten ikke er ført slik reglene sier, kan Skatteetaten ilegge overtredelsesgebyr.

Hvis personallisten ikke er ført slik reglene sier, kan Skatteetaten ilegge overtredelsesgebyr. Denne boken er utgitt av Skatteetaten og sendes gratis til alle som er pålagt å føre personalliste fra 1. januar 2014. Det vil si bransjene servering, frisør, skjønnhetspleie, bilpleie og bilverksted.

More information

LS-PBS LeverandørService opkrævninger via nets Instructions

LS-PBS LeverandørService opkrævninger via nets Instructions Instructions DDB DATA ApS Telefon: 58 30 32 00 - www.ddb-data.dk Side 1 Generelt (General information) LS-PBS is a program, which is used for sending and receiving nets / PBS LeverandørService charges

More information

Integrating SAS and Excel: an Overview and Comparison of Three Methods for Using SAS to Create and Access Data in Excel

Integrating SAS and Excel: an Overview and Comparison of Three Methods for Using SAS to Create and Access Data in Excel Integrating SAS and Excel: an Overview and Comparison of Three Methods for Using SAS to Create and Access Data in Excel Nathan Clausen, U.S. Bureau of Labor Statistics, Washington, DC Edmond Cheng, U.S.

More information

Data Visualization Tips and Techniques for Effective Communication

Data Visualization Tips and Techniques for Effective Communication ABSTRACT PharmaSUG 2013 - Paper DG10 Data Visualization Tips and Techniques for Effective Communication LeRoy Bessler Bessler Consulting and Research, Mequon, Milwaukee, Wisconsin, USA This tutorial presents

More information

Hvor svært kan det være udnyt din viden med omhu!

Hvor svært kan det være udnyt din viden med omhu! Hvor svært kan det være udnyt din viden med omhu! First Sub sea cable installed 1866 over the Atlantic Why make it so difficult, when it has been done for more than 145 years? Equipment and the technology

More information

Olie- og naturgasindustrien Levetidsomkostninger Del 3: Retningslinier for implementering

Olie- og naturgasindustrien Levetidsomkostninger Del 3: Retningslinier for implementering Dansk Standard DS/ISO 15663-3 1. udgave 2001-11-20 Olie- og naturgasindustrien Levetidsomkostninger Del 3: Retningslinier for implementering Petroleum and natural gas industries Lifecycle costing Part

More information

Parallel Data Preparation with the DS2 Programming Language

Parallel Data Preparation with the DS2 Programming Language ABSTRACT Paper SAS329-2014 Parallel Data Preparation with the DS2 Programming Language Jason Secosky and Robert Ray, SAS Institute Inc., Cary, NC and Greg Otto, Teradata Corporation, Dayton, OH A time-consuming

More information

Using the Magical Keyword "INTO:" in PROC SQL

Using the Magical Keyword INTO: in PROC SQL Using the Magical Keyword "INTO:" in PROC SQL Thiru Satchi Blue Cross and Blue Shield of Massachusetts, Boston, Massachusetts Abstract INTO: host-variable in PROC SQL is a powerful tool. It simplifies

More information

Demand for Analysis-Ready Data Sets. An Introduction to Banking and Credit Card Analytics

Demand for Analysis-Ready Data Sets. An Introduction to Banking and Credit Card Analytics Demand for Analysis-Ready Data Sets. An Introduction to Banking and Credit Card Analytics Copyright 2003 by Bikila bi Gwet Research papers and training manuals often use data that are too clean to reflect

More information

Sundhedsinformatik Kapacitetsbaseret roadmap for e-sundhedsarkitektur Del 1: Oversigt over nationale e-sundhedsinitiativer

Sundhedsinformatik Kapacitetsbaseret roadmap for e-sundhedsarkitektur Del 1: Oversigt over nationale e-sundhedsinitiativer DS-information DS/ISO/TR 14639-1 1. udgave 2012-10-11 Sundhedsinformatik Kapacitetsbaseret roadmap for e-sundhedsarkitektur Del 1: Oversigt over nationale e-sundhedsinitiativer Health informatics Capacity-based

More information

Parc del Segre Barcelona

Parc del Segre Barcelona Parc del Segre Barcelona Resume Park Olympic del Segre er en international white water park for rafting, kajak, kano og riverboarding. Parken er essentiel for byen, ideet aktiviteterne er med til at promoverer

More information

public void setusername(string username) { this.username = username; } public void setname(string name) { this.name = name; }

public void setusername(string username) { this.username = username; } public void setname(string name) { this.name = name; } User-klassen package domain; import dk.au.hum.imv.persistence.db.databasepersistent; public class User extends DatabasePersistent { private String username; private String name; private String address;

More information

Business development. Linnea Jacobsen. 1. semester 2014

Business development. Linnea Jacobsen. 1. semester 2014 Business development Linnea Jacobsen 1. semester 2014 v Business Models v Business Model Canvas v Groupwork Literature Alexander Osterwalder & Yves Pigneur: Business Model Generation: s. 14-47 + 76-103

More information

Casestudier, der understøtter IEC 62232 Bestemmelse af RF-felter og SAR-værdier i nærheden af radiokommunikationsbasestationer

Casestudier, der understøtter IEC 62232 Bestemmelse af RF-felter og SAR-værdier i nærheden af radiokommunikationsbasestationer DS-information DS/IEC/TR 62669 1. udgave 2011-07-04 Casestudier, der understøtter IEC 62232 Bestemmelse af RF-felter og SAR-værdier i nærheden af radiokommunikationsbasestationer med det formål at evaluere

More information

Kvalifisering av ny teknologi

Kvalifisering av ny teknologi Kvalifisering av ny teknologi Siemens AS 26.05.2011 Siemens Oil & Gas solutions - Offshore 2010. All rights reserved. De tre viktigste tingene subsea: Pålitelighet Pålitelighet Pålitelighet Hvorfor kvalifisering?

More information

ENGLISH. Trapeze European User Conference June 11-13 2013

ENGLISH. Trapeze European User Conference June 11-13 2013 ENGLISH Trapeze European User Conference June 11-13 2013 Program 08:30-09:15 510_DK Geografiske kort i NOVUS Hør hvordan de geografiske kort i NOVUS FX, NOVUS DR og CERT bliver implementeret Wednesday

More information

Ergonomi Fysisk miljø Anvendelse af internationale standarder for personer med særlige behov

Ergonomi Fysisk miljø Anvendelse af internationale standarder for personer med særlige behov Dansk standard DS/EN ISO 28803 1. udgave 2012-04-23 Ergonomi Fysisk miljø Anvendelse af internationale standarder for personer med særlige behov Ergonomics of the physical environment Application of international

More information

THE SAS OUTPUT DELIVERY SYSTEM: BOLDLY TAKE YOUR WEB PAGES WHERE THEY HAVE NEVER GONE BEFORE! CHEVELL PARKER, SAS INSTITUTE INC.

THE SAS OUTPUT DELIVERY SYSTEM: BOLDLY TAKE YOUR WEB PAGES WHERE THEY HAVE NEVER GONE BEFORE! CHEVELL PARKER, SAS INSTITUTE INC. THE SAS OUTPUT DELIVERY SYSTEM: BOLDLY TAKE YOUR WEB PAGES WHERE THEY HAVE NEVER GONE BEFORE! CHEVELL PARKER, SAS INSTITUTE INC. Copyright 2012, SAS Institute Inc. All rights reserved. Overview Mobile

More information

Rubber condoms Guidance on the use of ISO 4074 in the quality management of natural rubber latex condoms

Rubber condoms Guidance on the use of ISO 4074 in the quality management of natural rubber latex condoms Dansk standard DS/ISO 16038 1. udgave 2005-11-14 Kondomer Vejledning i brug af ISO 4074 ved kvalitetsstyring af latexkondomer Rubber condoms Guidance on the use of ISO 4074 in the quality management of

More information

AN INTRODUCTION TO MACRO VARIABLES AND MACRO PROGRAMS Mike S. Zdeb, New York State Department of Health

AN INTRODUCTION TO MACRO VARIABLES AND MACRO PROGRAMS Mike S. Zdeb, New York State Department of Health AN INTRODUCTION TO MACRO VARIABLES AND MACRO PROGRAMS Mike S. Zdeb, New York State Department of Health INTRODUCTION There are a number of SAS tools that you may never have to use. Why? The main reason

More information

The Power to Show: Ad Hoc Reporting, Custom Invoices, and Form Letters

The Power to Show: Ad Hoc Reporting, Custom Invoices, and Form Letters Paper 313-2009 The Power to Show: Ad Hoc Reporting, Custom Invoices, and Form Letters Daniel O Connor, SAS Institute Inc. ABSTRACT The ability to prepare complex reports and convey your message in a clear

More information

Informationsteknologi Storage management Del 1: Oversigt

Informationsteknologi Storage management Del 1: Oversigt Dansk standard DS/ISO/IEC 24775-1 1. udgave 2014-11-13 Informationsteknologi Storage management Del 1: Oversigt Information technology Storage management Part 1: Overview DS/ISO/IEC 24775-1 København DS

More information

Design guide. Design denmark. Design guide Version 1.0 November 2014

Design guide. Design denmark. Design guide Version 1.0 November 2014 Design guide Design guide Version 1.0 November 2014 is an alliance of designers, design thinkers and design businesses, working Design guide About the new Design denmark visual identity The new visual

More information

USSASSAARINERMI AKIT ANNONCEPRISER

USSASSAARINERMI AKIT ANNONCEPRISER USSSSRINERMI KIT NNONCEPRISER Igloo Magazine anu una UN Business TIMIUN Ilaannigooq Der var engang... Once upon a time... Ukioq 2011 Kalaallit Nunaanni inooriaatsimut tunngasumik tamanut naleqquttumik

More information

SAS Visual Analytics: Arkitektur, data flow og administration

SAS Visual Analytics: Arkitektur, data flow og administration make connections share ideas be inspired SAS Visual Analytics: Arkitektur, data flow og administration Jens Dahl Mikkelsen, SAS Institute Agenda SAS Visual Analytics-komponenter Blade server-miljø Arkitektur

More information

2 halvleg. 1 halvleg. Opvarmning. 2 halvleg. 3 halvleg. Advanced & Powerful. Basic PC-based Automation. Diagnose. Online Tools & Add-on s

2 halvleg. 1 halvleg. Opvarmning. 2 halvleg. 3 halvleg. Advanced & Powerful. Basic PC-based Automation. Diagnose. Online Tools & Add-on s Opvarmning 1 halvleg 2 halvleg 3 halvleg Basic PC-based Automation Advanced & Powerful PC-based Automation Online Tools & Add-on s PC-based Automation Diagnose PC-based Automation Mall www.siemens.dk/mall

More information