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

Size: px
Start display at page:

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

Transcription

1 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 grossist output out=ny sum=total_ant total_pris proc print data=ny Tip 1. title * nulstiller title (eller flere) title1 "Tip 1, Benyt Proc Means til at beregne Quantiler" class grossist output out=ny2 sum=median_pris mean=total_pris p50=mean_pris proc print data=ny2 Tip 2. title title1 "Tip 2, Brug AUTONAME og AUTOLABEL options" label pris_ialt = 'Total pris' class grossist output out=ny3 sum= mean= p50= /autolabel autoname proc print data=ny3 proc contents data=ny3 noprint out=ny4 (keep=name label) proc print data=ny4 proc print data=ny3 l Tip 3.

2 title1 "Tip 3, Dan flere output dataset i en Proc Means" output out=tip3 sum= data testtyp9 set tip3 where _type_=9 * eller data testtyp9a set tip3 if _type_='1001'b /* bemærk at where ikke kan benyttes med BIT expression */ output out=tip3a sum= output out=tip3b(where=(_type_ = 9)) sum= Proc Means data=sugdk.kundedata2 noprint chartype missing output out=tip3c sum= output out=tip3d (where=(_type_ = '1001')) sum= Proc Means data=sugdk.kundedata2 noprint chartype missing output out=tip3e sum= output out=tip3f(where=(_type_ in('0000','1001'))) sum= Tip 4. title1 "Tip 4, Brug descendingtypes" Proc Means data=sugdk.kundedata2 noprint descendtypes chartype missing class grossist kundetype output out=tip4 sum= proc print data=tip4 Tip 5. title1 "Tip 5, Brug TYPES Statement til at begrænse class-kombination"

3 types () grossist * kundetype postnr * salgskontor postnr * salgskontor * grossist output out=tip5 sum= proc freq data=tip5 Tip 6. ptions nocenter nodate title1 "Tip 6, Brug DESCENDING og CLASS" Proc Means data=sugdk.kundedata2 noprint descending missing types () grossist * kundetype postnr * salgskontor postnr * salgskontor * grossist output out=tip6 sum= proc freq data=tip6 Tip 7. title1 "Tip 7, Brug IDGROUP til at danne rækker med" title2 "Extreme værdier fra input datasettet" class salgskontor/descending class kundetype var startdato output out=tip7 idgroup (max(startdato) out[2] (startdato)= maxstdato) idgroup (min(startdato) out[2] (startdato)= minstdato) sum= mean= /autoname proc print data=tip7 width=min Tip 8. title1 "Tip 8, Preloadfmt og Completetypes" proc format value $salgskontor '02000' = '02000 Roskilde' '02001' = '02001 Greve' '02002' = '02002 Køge' '02003' = '02003 Solrød'

4 '02004' = '02004 Havdrup' class salgskontor/preloadfmt var antal format salgskontor $salgskontor. output out=tip8 sum= mean= /autoname proc print data=tip8 proc format value $salgskontora '02000' = 'Roskilde' '02001' = 'Greve' '02002' = 'Køge' '02003' = 'Solrød' '02004' = 'Havdrup' Proc Means data=sugdk.kundedata2 noprint completetypes missing class salgskontor/preloadfmt order=freq var antal format salgskontor $salgskontora. output out=tip8a sum= mean= /autoname proc print data=tip8a Tip 9. title1 "Tip 9, Brug WAYS" ways 3 output out=tip9 sum= proc freq data=tip9 Tip 10. title "Tip #10 Multilabel format" proc format value $postnra (multilabel) = 'København/Sjælland' = 'Fyn' = 'Jylland' value $postnrb (multilabel) = 'København/Sjælland' = 'Fyn' = 'Jylland' = 'Bornholm'

5 proc means data=sugdk.kundedata2 noprint completetypes nway missing class postnr/preloadfmt MLF order=formatted var antal output out=tip10 sum= format postnr $postnra. proc print data=tip10 proc means data=sugdk.kundedata2 noprint completetypes nway missing class postnr/preloadfmt MLF order=formatted var antal output out=tip10b sum= format postnr $postnrb. proc print data=tip10b Tip 11. title1 "Tip 11, Brug CLASSDATA dataset" data salgskontor length salgskontor $5 input salgskontor cards title1 "Tip 11, Brug CLASSDATA dataset" proc means data=sugdk.kundedata2 classdata=salgskontor noprint missing class salgskontor var antal output out=tip11 sum= proc print data=tip11 Tip 12. title1 "Eksempel 12, brug formater til summering" proc means data=sugdk.kundedata2 noprint class kundetype startdato format startdato yyq6. output out=eks12 sum=/autolabel autoname proc freq data=eks12 proc print data=eks12

6 Tip 13. title1 "Eksempel 13, NWAY option" proc means data=sugdk.kundedata2 noprint nway class kundetype startdato format startdato yyq6. output out=eks13 sum=/autolabel autoname proc freq data=eks13 proc print data=eks13 Sammen ligning Proc Sql og Proc Means. proc sql create table tip3sql as select postnr, salgskontor, grossist, kundetype, sum(antal) as antal_sum, sum(pris_ialt) as pris_ialt_sum, count(*) as records from sugdk.kundedata2 group by postnr, salgskontor, grossist, kundetype quit Proc Means data=sugdk.kundedata2 noprint missing nway output out=tip3nway sum= Kommentarer til programmerne, se i præsentationerne, hvor det hele bliver gennemgået. Per Andersen Capgemini Danmark A/S per.andersen@capgemini.com

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

* --- Alle labels kan nu bestemmes i PROC PRINT -------; 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

More information

PROC MEANS: More than just your average procedure

PROC MEANS: More than just your average procedure Paper 68-25 PROC MEANS: More than just your average procedure Peter R. Welbrock Strategic Information Systems, Inc., Philadelphia, PA Abstract PROC MEANS and its close relative PROC SUMMARY have been two

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 18-27 Advanced Tips and Techniques with PROC MEANS. Andrew H. Karp Sierra Information Services, Inc. Sonoma, California USA

Paper 18-27 Advanced Tips and Techniques with PROC MEANS. Andrew H. Karp Sierra Information Services, Inc. Sonoma, California USA Paper 18-27 Advanced Tips and Techniques with PROC MEANS Andrew H. Karp Sierra Information Services, Inc. Sonoma, California USA PROC MEANS (and is "sister," PROC SUMMARY) have been base SAS Software procedures

More information

Presentation. Morten Hvenegaard Project Sales

Presentation. Morten Hvenegaard Project Sales Presentation One sensor in each luminaire - efficient lighting control 25 % savings on seamless daylight adjustment. One sensor in each luminaire - efficient lighting control 25 % savings on seamless daylight

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

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

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

SAS Views The Best of Both Worlds

SAS Views The Best of Both Worlds Paper 026-2010 SAS Views The Best of Both Worlds As seasoned SAS programmers, we have written and reviewed many SAS programs in our careers. What I have noticed is that more often than not, people who

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

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

vfredag Velkommen tilbage VMware Danmark 7 Marts 2014 2014 VMware Inc. All rights reserved.

vfredag Velkommen tilbage VMware Danmark 7 Marts 2014 2014 VMware Inc. All rights reserved. vfredag Velkommen tilbage VMware Danmark 7 Marts 2014 2014 VMware Inc. All rights reserved. Agenda Nye Systems Engineers hos VMware Danmark Tiltag fra VMware Danmark Whats New Agenda til næste vfredag

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

Melissa & Cynthia viser, hvordan man påfører EYES ON LINER AND STYLISH BROW

Melissa & Cynthia viser, hvordan man påfører EYES ON LINER AND STYLISH BROW Side 1 af 5 Melissa & Cynthia viser, hvordan man påfører EYES ON LINER AND STYLISH BROW EYES eyeliner ON LINER og får AND perfekt STYLISH definerede BROW bryn The right products make a world of difference.

More information

Research on the Danish heroin assisted treatment programme

Research on the Danish heroin assisted treatment programme Research on the Danish heroin assisted treatment programme Katrine Schepelern Johansen Anthropologist, PhD Post.doc, Department of Anthropology, University of Copenhagen Treatment with heroin in Denmark

More information

Omkostnings- og investeringsteori Efterår 2009 Opgaver

Omkostnings- og investeringsteori Efterår 2009 Opgaver Omkostnings- og investeringsteori Efterår 2009 Opgaver Jonas Sveistrup Hansen - stud.merc.it 23. september 2009 1 Indhold 1 2-27 p. 76 - Identifying Cost Drivers 3 2 2-46 p. 81- Basic Relationship, Restaurant

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

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

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

USER MANUAL FOR MY ASSOCIATION 22.03.2013

USER MANUAL FOR MY ASSOCIATION 22.03.2013 USER MANUAL FOR MY ASSOCIATION 22.03.2013 List of contents 1. How to register your soc iety 2.How to edit/update your society 3. How to send an application to Kulturstyret for financial funding Conditions

More information

Hot & New in Symantec Management and Windows Protection

Hot & New in Symantec Management and Windows Protection [Technology Days 2010] Hot & New in Symantec and Windows Protection Finn Henningsen & Wael Al Assadi Hot & New in Symantec and Windows Protection AGENDA 1 2 3 Intro Storage /Wael Al Assadi Assadi Endpoint

More information

PowerLabDK and ongoing research

PowerLabDK and ongoing research PowerLabDK and ongoing research Professor and head of centre Jacob Østergaard, CET PhD-student German Tarnowski, Vestas & CET PhD-student Preben Nyeng, CET 15 June 2010 PowerLabDK Experimental Platform

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

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

Nordic Built Active Roofs and Facades ELLEBO RENOVATION

Nordic Built Active Roofs and Facades ELLEBO RENOVATION 26/10 2015 Nordic Built Active Roofs and Facades ELLEBO RENOVATION CONCEPT & ACTIVE HOUSE EVALUATION ENVIRON MENT ENERGY WINTERGARDEN vs. SUMMERGARDEN COMFORT CONCEPT 26/10 2015 WINTER GARDEN FACADE 12

More information

Effective Use of SQL in SAS Programming

Effective Use of SQL in SAS Programming INTRODUCTION Effective Use of SQL in SAS Programming Yi Zhao Merck & Co. Inc., Upper Gwynedd, Pennsylvania Structured Query Language (SQL) is a data manipulation tool of which many SAS programmers are

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

Fuld Skolerapport for Søhusskolen, i Odense kommune, for skoleår 2013/2014 for klassetrin(ene) 9. med reference Tilsvarende klassetrin i kommunen

Fuld Skolerapport for Søhusskolen, i Odense kommune, for skoleår 2013/2014 for klassetrin(ene) 9. med reference Tilsvarende klassetrin i kommunen Side 1 af 41 Side 2 af 41 Side 3 af 41 Side 4 af 41 Side 5 af 41 Side 6 af 41 Side 7 af 41 Side 8 af 41 Side 9 af 41 Side 10 af 41 Side 11 af 41 Side 12 af 41 Side 13 af 41 Side 14 af 41 Side 15 af 41

More information

Fuld Skolerapport for Hunderupskolen, i Odense kommune, for skoleår 2013/2014 for klassetrin(ene) 7. med reference Tilsvarende klassetrin i kommunen

Fuld Skolerapport for Hunderupskolen, i Odense kommune, for skoleår 2013/2014 for klassetrin(ene) 7. med reference Tilsvarende klassetrin i kommunen Side 1 af 43 Side 2 af 43 Side 3 af 43 Side 4 af 43 Side 5 af 43 Side 6 af 43 Side 7 af 43 Side 8 af 43 Side 9 af 43 Side 10 af 43 Side 11 af 43 Side 12 af 43 Side 13 af 43 Side 14 af 43 Side 15 af 43

More information

Ny postlov i Norge New postal regulations in Norway. Frode Wold, Norway Post Nordic Address Forum, Iceland 5-6. may 2015

Ny postlov i Norge New postal regulations in Norway. Frode Wold, Norway Post Nordic Address Forum, Iceland 5-6. may 2015 Frode Wold, Norway Post Nordic Address Forum, Iceland 5-6. may 2015 < Norge skal innordne seg EU s postdirektiv og dette vil få konsekvenser for Posten Norge mht postnummeradministrasjon, postadresser

More information

Nudge et puf der virker

Nudge et puf der virker May 21, 2014, DI Nudge et puf der virker PELLE GULDBORG HANSEN, BEHAVIOURAL SCIENTIST, PH.D. / CBIT, ROSKILDE UNIVERSITY DIRECTOR OF ISSP THE INITIATIVE FOR SCIENCE, SOCIETY & POLICY MEMBER OF THE PREVENTION

More information

Velkommen til Tech Update Århus 13. april 2010

Velkommen til Tech Update Århus 13. april 2010 Efficiency. Control. Choice Velkommen til Tech Update Århus 13. april 2010 1 Agenda for Tech Update 13. april 2010 09.00-09.10 Velkomst Niels Astor, EMC 09.10-09.35 Rejsen mod den private sky og hvad er

More information

We begin by defining a few user-supplied parameters, to make the code transferable between various projects.

We begin by defining a few user-supplied parameters, to make the code transferable between various projects. PharmaSUG 2013 Paper CC31 A Quick Patient Profile: Combining External Data with EDC-generated Subject CRF Titania Dumas-Roberson, Grifols Therapeutics, Inc., Durham, NC Yang Han, Grifols Therapeutics,

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

Danish Blade Service Steen Blichers Vej 16 6000 Kolding Denmark +4540943705 www.danishbladeservice.com. Wire udskiftning.

Danish Blade Service Steen Blichers Vej 16 6000 Kolding Denmark +4540943705 www.danishbladeservice.com. Wire udskiftning. Wire udskiftning 1 of 9 pages Content 1. Order... 4 2. Objective... 4 3. Documentation of the work performed... 4 4. Inspection extent... 4 5. Inspection data incl. environmental conditions... 4 6. Deviations

More information

The Exercise of Options Embedded in Norwegian Student Loans

The Exercise of Options Embedded in Norwegian Student Loans The Exercise of Options Embedded in Frode Brevik and Axel Kind University of St. Gallen Swiss Society of Economics and Statistics 2007 Annual Meeting, St. Gallen March 23, 2007 Brevik and Kind (2007) -

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

Dongfeng Li. Autumn 2010

Dongfeng Li. Autumn 2010 Autumn 2010 Chapter Contents Some statistics background; ; Comparing means and proportions; variance. Students should master the basic concepts, descriptive statistics measures and graphs, basic hypothesis

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

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

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

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

Christianna S. Williams, University of North Carolina at Chapel Hill, Chapel Hill, NC

Christianna S. Williams, University of North Carolina at Chapel Hill, Chapel Hill, NC Christianna S. Williams, University of North Carolina at Chapel Hill, Chapel Hill, NC ABSTRACT Have you used PROC MEANS or PROC SUMMARY and wished there was something intermediate between the NWAY option

More information

Labels, Labels, and More Labels Stephanie R. Thompson, Rochester Institute of Technology, Rochester, NY

Labels, Labels, and More Labels Stephanie R. Thompson, Rochester Institute of Technology, Rochester, NY Paper FF-007 Labels, Labels, and More Labels Stephanie R. Thompson, Rochester Institute of Technology, Rochester, NY ABSTRACT SAS datasets include labels as optional variable attributes in the descriptor

More information

Oracle Application Express

Oracle Application Express Oracle Application Express Eftermiddagsmøde Oracle/APEX Konsulent Oracle/APEX Konsulent Startede som Oracle udvikler i 1988 (RDBMS Version 5) Startede MBNDATA i 1996 APEX specialisering siden 1997 Agenda

More information

PATENTSKRIFT. (74) Fuldmægtig: LINGPAT V/OLE JAGTBOE, Letlandsgade 3, 2.mf., 1723 København V, Danmark

PATENTSKRIFT. (74) Fuldmægtig: LINGPAT V/OLE JAGTBOE, Letlandsgade 3, 2.mf., 1723 København V, Danmark (19) DANMARK e ~ Patent- og Varemærkestyrelsen (12) PATENTSKRIFT (10) DK 177424 81 (51) lnt.ci.: H 02 M 7110 (2006.01) (21) Ansøgningsnummer: PA 2011 00299 (22) Indleveringsdato: 2011-04-15 (24) Løbedag

More information

ActionPhoto International

ActionPhoto International 360 Panoramic Guide a new visualisation and communication tool Per Erik Berger Managing Director ActionPhoto International AS action-photo.no Agenda What is a 360 Panoramic Guide? Example Bideford Dolphin.

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

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

Foundations & Fundamentals. A PROC SQL Primer. Matt Taylor, Carolina Analytical Consulting, LLC, Charlotte, NC

Foundations & Fundamentals. A PROC SQL Primer. Matt Taylor, Carolina Analytical Consulting, LLC, Charlotte, NC A PROC SQL Primer Matt Taylor, Carolina Analytical Consulting, LLC, Charlotte, NC ABSTRACT Most SAS programmers utilize the power of the DATA step to manipulate their datasets. However, unless they pull

More information

How To Understand The Power Of Sas

How To Understand The Power Of Sas Learning SAS by Example A Programmer s Guide Ron Cody SAS Press From Learning SAS by Example. Full book available for purchase here. Contents List of Programs xv Preface xxix Acknowledgments xxxi Part

More information

Kronologisk listing av trinnprisprodukter etter lanseringstidspunkt. LIS priser er gjeldende for 2011

Kronologisk listing av trinnprisprodukter etter lanseringstidspunkt. LIS priser er gjeldende for 2011 Kronologisk listing av trinnprisprodukter etter lanseringstidspunkt. LIS priser er gjeldende for 2011 LIS AUP (SLVs kalk) Gjeldende trinnpris PRODUSENT PAKNINGSTYPE OG STYRKEGRAD ANT TABLETTER PRIS FOR

More information

Show me the money Monday, September 5, 2011

Show me the money Monday, September 5, 2011 Show me the money Hans Henrik H. Heming WWW.PUBLICMIND.DK Jeg har blogget siden 2002, hvor en kærlig sjæl kaldte det for en digital patientjournal. Publicmind har siden haft over 50.000 besøgende og

More information

SPECIFIKATIONER KEYBOARD LYDPROCESSOR. 88 tangenter (PHA-4 Concert Keyboard: med Escapement og Ebony/Ivory Feel) Klaviatur

SPECIFIKATIONER KEYBOARD LYDPROCESSOR. 88 tangenter (PHA-4 Concert Keyboard: med Escapement og Ebony/Ivory Feel) Klaviatur SPECIFIKATIONER KEYBOARD Klaviatur Anslagsfølsomhed Keyboard Mode Pedaler 88 tangenter (PHA-4 Concert Keyboard: med Escapement og Ebony/Ivory Feel) Key Touch: 100 typer, fixed touch Hammerrespons: Off,

More information

Paper 109-25 Merges and Joins Timothy J Harrington, Trilogy Consulting Corporation

Paper 109-25 Merges and Joins Timothy J Harrington, Trilogy Consulting Corporation Paper 109-25 Merges and Joins Timothy J Harrington, Trilogy Consulting Corporation Abstract This paper discusses methods of joining SAS data sets. The different methods and the reasons for choosing a particular

More information

COACH BOT Modular e-course with virtual coach tool support

COACH BOT Modular e-course with virtual coach tool support COACH BOT Modular e-course with virtual coach tool support LIFELONG LEARNING PROGRAM LEONARDO da VINCI Aarhus Social and Health Care College TRAINING FOR HEALTHCARE PROFESSIONALS AND HOME CARE PROVIDERS

More information

HELP! - My MERGE Statement Has More Than One Data Set With Repeats of BY Values!

HELP! - My MERGE Statement Has More Than One Data Set With Repeats of BY Values! HELP! - My MERGE Statement Has More Than One Data Set With Repeats of BY Values! Andrew T. Kuligowski, The Nielsen Company ABSTRACT Most users of the SAS system have encountered the following message:

More information

Management. Support HR

Management. Support HR Brugerrejsen Product development Marketing Sales Support HR Service IT Financial Management Før Under Efter a b Planlægning Køreplan Købe billet: Orange eller 1...? Pladsbillet: Familie eller stille? Transport

More information

PROC SUMMARY Options Beyond the Basics Susmita Pattnaik, PPD Inc, Morrisville, NC

PROC SUMMARY Options Beyond the Basics Susmita Pattnaik, PPD Inc, Morrisville, NC Paper BB-12 PROC SUMMARY Options Beyond the Basics Susmita Pattnaik, PPD Inc, Morrisville, NC ABSTRACT PROC SUMMARY is used for summarizing the data across all observations and is familiar to most SAS

More information

Azfar Bassir. Summary. Experience. Developer at SHFT azbassir@gmail.com

Azfar Bassir. Summary. Experience. Developer at SHFT azbassir@gmail.com Azfar Bassir Developer at SHFT azbassir@gmail.com Summary I consider myself as a positive, happy, energetic and responsible person. I love challenges because I always want to improve my skills. I am ambitious

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

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

Post Processing Macro in Clinical Data Reporting Niraj J. Pandya

Post Processing Macro in Clinical Data Reporting Niraj J. Pandya Post Processing Macro in Clinical Data Reporting Niraj J. Pandya ABSTRACT Post Processing is the last step of generating listings and analysis reports of clinical data reporting in pharmaceutical industry

More information

Test cases for railway noise Nord2000. Birger Plovsing DELTA

Test cases for railway noise Nord2000. Birger Plovsing DELTA Test cases for railway noise Nord2000 Birger Plovsing DELTA Environmental Project No. 1391 2011 The Danish Environmental Protection Agency will, when opportunity offers, publish reports and contributions

More information

UNIVERSITY OF OSLO. Faculty of Mathematics and Natural Sciences

UNIVERSITY OF OSLO. Faculty of Mathematics and Natural Sciences UNIVERSITY OF OSLO Faculty of Mathematics and Natural Sciences Exam: INF 4300 Digital image analysis Date: Friday December 11, 2009 Exam hours: 14.30-17.30 Number of pages: 7 pages plus 1 page enclosure

More information

Performing Queries Using PROC SQL (1)

Performing Queries Using PROC SQL (1) SAS SQL Contents Performing queries using PROC SQL Performing advanced queries using PROC SQL Combining tables horizontally using PROC SQL Combining tables vertically using PROC SQL 2 Performing Queries

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

How To Understand Software Quality

How To Understand Software Quality Chapter 24 - Quality Management Letizia Jaccheri 1 Topics covered Software quality (project, product, organization) Software standards (product, process) Reviews and inspections (code, progress, standards)

More information

Thomas Ludvik Næss Country Manager

Thomas Ludvik Næss Country Manager Thomas Ludvik Næss Country Manager For hvert 2.5 sekund slippes det en ny malware! Hvor mange Bic Mac spiser du?! Source: blog.trendmicro.com Virus Remover 2008 & Antivirus 2009 Source: blog.trendmicro.com

More information

<Matthías saga digitalis 6.0/>

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

More information

Tips, Tricks, and Techniques from the Experts

Tips, Tricks, and Techniques from the Experts Tips, Tricks, and Techniques from the Experts Presented by Katie Ronk 2997 Yarmouth Greenway Drive, Madison, WI 53711 Phone: (608) 278-9964 Web: www.sys-seminar.com Systems Seminar Consultants, Inc www.sys-seminar.com

More information

Model Tub Design Jens Juul Eilersen

Model Tub Design Jens Juul Eilersen Arm height: 58.5 cm Arm width: 7 cm Arm cushion width: 20 cm Total depth (frame): 94 / 104 cm Seat depth: 68 / 78 cm Seat height: 40 cm Total height (frame): 58.5 cm 110 x 94 / 104 cm 180 x 94 cm 120 x

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

Developing an On-Demand Web Report Platform Using Stored Processes and SAS Web Application Server

Developing an On-Demand Web Report Platform Using Stored Processes and SAS Web Application Server Paper 10740-2016 Developing an On-Demand Web Report Platform Using Stored Processes and SAS Web Application Server ABSTRACT Romain Miralles, Genomic Health. As SAS programmers, we often develop listings,

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

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

How To Create A Visual Analytics System

How To Create A Visual Analytics System make connections share ideas be inspired SAS Visual Analyticsarkitektur Thomas Damgaard Seniorkonsulent Agenda Hvad er SAS Visual Analytics? Arkitektur Tekniske krav Implementering Spørgsmål Hvad er SAS

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

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

Hardware og software på forskermaskinerne

Hardware og software på forskermaskinerne 16. marts 2016 MTL Forskning og Metode og software på forskermaskinerne Dette er en liste over alle installerede programmer på DST s Forskermaskiner pr. 16/3/2016. Ud over de faste program-pakker til GAUSS,

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

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

Selvevaluering av hele semestre bestående av flere moduler eller blokker

Selvevaluering av hele semestre bestående av flere moduler eller blokker Selvevaluering av hele semestre bestående av flere moduler eller blokker Utdanning: Master aquatic medicine Semester nr: 1 Dato: 2/2-07 Skrevet av: Øystein Evensen The evaluation was carried out as during

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

"The challenges and cooperation in Guidance in Denmark". Helsinki The 10th of October 2012. Margrethe Tovgaard. Head of department and Team Young

The challenges and cooperation in Guidance in Denmark. Helsinki The 10th of October 2012. Margrethe Tovgaard. Head of department and Team Young "The challenges and cooperation in Guidance in Denmark". Helsinki The 10th of October 2012 Margrethe Tovgaard Head of department and Team Young Content The national targets and guidance in Denmark General

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

Too Much. Workmate. A. Listen to Adrian talking about obesity. 1 Who is he especially worried about?

Too Much. Workmate. A. Listen to Adrian talking about obesity. 1 Who is he especially worried about? Too Much Workmate 1. Work in pairs. Find these expressions in the text. Read them aloud. 1 Jo større han blev, desto mindre motionerede han. 2 I mange år havde han ikke kunnet gå i biografen. 3 Han løste

More information

GetProduct. Webservice name: GetProduct. Adress: https://www.elib.se/webservices/getproduct.asmx

GetProduct. Webservice name: GetProduct. Adress: https://www.elib.se/webservices/getproduct.asmx GetProduct Webservice name: GetProduct Adress: https://www.elib.se/webservices/getproduct.asmx WSDL: https://www.elib.se/webservices/getproduct.asmx?wsdl Webservice Methods: Name: Description: Output schema:

More information

EMC SourceOne Family. Michael Søriis Sales Specialist Storage FUJITSU A/S. Kompetera Solutions Day 2010 23. september 2010

EMC SourceOne Family. Michael Søriis Sales Specialist Storage FUJITSU A/S. Kompetera Solutions Day 2010 23. september 2010 EMC SourceOne Family Michael Søriis Sales Specialist Storage FUJITSU A/S Kompetera Solutions Day 2010 23. september 2010 EMC SourceOne Email Management 1 Copyright 2010 FUJITSU LIMITED What is EMC SourceOne

More information

LinkedIn. Lead-Generation. Kim Plesner-Jacobsen, Vertic Trine Tirsgaard, Microsoft. Twitter: #SMWLinkedIn

LinkedIn. Lead-Generation. Kim Plesner-Jacobsen, Vertic Trine Tirsgaard, Microsoft. Twitter: #SMWLinkedIn LinkedIn Lead-Generation Kim Plesner-Jacobsen, Vertic Trine Tirsgaard, Microsoft Twitter: #SMWLinkedIn Agenda What Why Who How is LinkedIn power? LinkedIn lead-generation? is doing it? is Microsoft doing

More information

2006/ 07. Til innovative Kreative individer Inspiration. Kvalitet. Miljø. www.tiki.nu

2006/ 07. Til innovative Kreative individer Inspiration. Kvalitet. Miljø. www.tiki.nu 2006/ 07 Tiki Aps Nyholms Allé 30A. 2610 Rødovre tel. +45 36706030. fax +45 36706032 e-mail tiki@tiki.nu CVR: 29410071 Til innovative Kreative individer Inspiration. Kvalitet. Miljø Kun salg til private

More information

An Approach to Creating Archives That Minimizes Storage Requirements

An Approach to Creating Archives That Minimizes Storage Requirements Paper SC-008 An Approach to Creating Archives That Minimizes Storage Requirements Ruben Chiflikyan, RTI International, Research Triangle Park, NC Mila Chiflikyan, RTI International, Research Triangle Park,

More information

RISK MANAGEMENT 2005

RISK MANAGEMENT 2005 RISK MANAGEMENT 2005 Simple example Value At Risk (VAR) and Profit At Risk(PAR) analysis Use of financial tools Based on Birger Mo, SINTEF Energiforskning 1 Example Flexible kontract (100 GWh) can be used

More information

Online Outsourcing. - Fremtidens måde at arbejde på. Fremtidens måde at arbejde på. Digital Markedsføring 2013

Online Outsourcing. - Fremtidens måde at arbejde på. Fremtidens måde at arbejde på. Digital Markedsføring 2013 Online Outsourcing Fremtidens måde at arbejde på - Fremtidens måde at arbejde på Digital Markedsføring 2013 Digital Markedsføring 2013 @Shedebrandt #Elance #DM13DK CONTEXT AND TRENDS THE FRACTIONAL ECONOMY

More information

www.scherning.dk / SPRING 2013

www.scherning.dk / SPRING 2013 www.scherning.dk / SPRING 2013 METTE SCHERNING en dansk smykkedesigner METTE SCHERNING a Danish jewellery designer Mette Scherning mestrer om nogen kunsten at kreere smykker med Mette Scherning masters

More information

P-EG stainless steel housing for gas filtration

P-EG stainless steel housing for gas filtration P-EG stainless steel housing for gas filtration ultra.filter P-EG The P-EG stainless steel housing was developped for purification of compressed air an other technical gases. With the optimized construction

More information

Building Stronger Universities in Developing Countries. First Phase, August 2011 July 2013

Building Stronger Universities in Developing Countries. First Phase, August 2011 July 2013 Building Stronger Universities in Developing Countries First Phase, August 2011 July 2013 Inception Report November 2011 2 Introduction In agreement with the Ministry of Foreign Affairs the BSU initiative

More information

1 Copyright 2012, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2012, Oracle and/or its affiliates. All rights ORACLE PRODUCT LOGO Fra til Prosessportal Per Anders Jørgensen & Torleif Grasto Presenting with LOGO 2 Copyright 2012, Oracle and/or its affiliates.

More information

Simulate PRELOADFMT Option in PROC FREQ Ajay Gupta, PPD, Morrisville, NC

Simulate PRELOADFMT Option in PROC FREQ Ajay Gupta, PPD, Morrisville, NC ABSTRACT PharmaSUG 2015 - Paper QT33 Simulate PRELOADFMT Option in PROC FREQ Ajay Gupta, PPD, Morrisville, NC In Pharmaceuticals/CRO industries, table programing is often started when only partial data

More information