1 81 1 81 about me
play

1 / 81 1 / 81 About me Dr. Uwe Schmitt Work for Scientific IT - PowerPoint PPT Presentation

1 / 81 1 / 81 About me Dr. Uwe Schmitt Work for Scientific IT Services (SIS) Scientific programmer I also work as tutor and consultant. 2 / 81 Our Goal: Our Goal: always always produce same results produce same results from same data


  1. 1 / 81 1 / 81

  2. About me Dr. Uwe Schmitt Work for Scientific IT Services (SIS) Scientific programmer I also work as tutor and consultant. 2 / 81

  3. Our Goal: Our Goal: always always produce same results produce same results from same data from same data 3 / 81 3 / 81

  4. Our Goal: Our Goal: always always produce same results produce same results from same data from same data At any time At any time 4 / 81 4 / 81

  5. Our Goal: Our Goal: always always produce same results produce same results from same data from same data At any time At any time At any place At any place 5 / 81 5 / 81

  6. Our Goal: Our Goal: always always produce same results produce same results from same data from same data At any time At any time At any place At any place By any person By any person 6 / 81 6 / 81

  7. What can go wrong? 1. Software / tools are not available (anymore). 7 / 81

  8. What can go wrong? 1. Software / tools are not available (anymore). 2. Used software is fragile. 8 / 81

  9. What can go wrong? 1. Software / tools are not available (anymore). 2. Used software is fragile. 3. Processing steps are not documented. 9 / 81

  10. What can go wrong? 1. Software / tools are not available (anymore). 2. Used software is fragile. 3. Processing steps are not documented. 4. Human mistakes during processing. 10 / 81

  11. 1. Not available software / tools Use open source software / programming languages. Publish your code using an open source license. 11 / 81

  12. 2. Software is fragile Google for "excel hell"! 12 / 81

  13. 13 / 81 13 / 81

  14. 2. Software is fragile Excel: incorrect leap year calculations 1900­02­29 7 Worst Excel Mistakes of All Time 14 / 81

  15. 3. Processing steps are not 3. Processing steps are not documented. documented. 4. How to avoid human mistakes? 4. How to avoid human mistakes? 15 / 81 15 / 81

  16. 16 / 81 16 / 81

  17. 17 / 81 17 / 81

  18. Recipes / lab protocols: List of simple steps More or less exact instructions Executed by humans 18 / 81

  19. 19 / 81 19 / 81

  20. Programs numbers = read_txt("numbers.txt") average = sum(numbers) / len(numbers) print("average is", average) average is 12.34 20 / 81

  21. Programs numbers = read_txt("numbers.txt") average = sum(numbers) / len(numbers) print("average is", average) average is 12.34 List of simple steps Exact instructions Executed by unforgiving computers 21 / 81

  22. Why to program? Reduce / no manual steps in your analysis Automate as much as possible Good code is implicit documentation how you produced results Others can build upon your work 22 / 81

  23. 23 / 81 23 / 81

  24. 24 / 81 24 / 81

  25. ... the findings suggest that the outcomes of learning a com ­ puter language go beyond the content of that specific computer language. 25 / 81

  26. 26 / 81

  27. Eases talking to the IT people. 27 / 81

  28. How do I learn to program? Choose easy­to­learn and open source language like Python or R. 28 / 81

  29. How do I learn to program? Choose easy­to­learn and open source language like Python or R. R preferable for advanced statistics and elaborate plotting. 29 / 81

  30. How do I learn to program? Choose easy­to­learn and open source language like Python or R. R preferable for advanced statistics and elaborate plotting. Python preferable for data science and machine learning. 30 / 81

  31. How do I learn to program? Choose easy­to­learn and open source language like Python or R. R preferable for advanced statistics and elaborate plotting. Python preferable for data science and machine learning. I consider Python as the clearer and more versatile programming language. 31 / 81

  32. How do I learn to program? Choose easy­to­learn and open source language like Python or R. R preferable for advanced statistics and elaborate plotting. Python preferable for data science and machine learning. I consider Python as the clearer and more versatile programming language. There are many books and online courses! 32 / 81

  33. Typical learning curve 33 / 81

  34. Now I know Now I know programming, what programming, what can go wrong? can go wrong? 34 / 81 34 / 81

  35. Now I know Now I know programming, what programming, what can go wrong? can go wrong? Actually a lot! Actually a lot! 35 / 81 35 / 81

  36. What can go wrong? 1. Programs change over time. 36 / 81

  37. What can go wrong? 1. Programs change over time. 2. Programs can break. 37 / 81

  38. What can go wrong? 1. Programs change over time. 2. Programs can break. 3. Code can be complex. 38 / 81

  39. What can go wrong? 1. Programs change over time. 2. Programs can break. 3. Code can be complex. 4. Programs will run on other computers. 39 / 81

  40. 1. Managing changes 1. Managing changes 40 / 81 40 / 81

  41. 41 / 81 41 / 81

  42. Version control systems (VCS) time machines for your source code and textual data. git is the most common tool for tracking changes over time. git ≠ github ! github , gitlab : web frontends for managing git repositories. ETH has its own instance gitlab.ethz.ch for hosting code. 42 / 81

  43. git benefits No version numbers in file names any more! No comments to keep old and outdated code. Undo changes. Supports collaborative development. 43 / 81

  44. Version your software Learn to write "packages" instead of emailing code. Use semantic versioning x.y.z . x for major updates (python2 and python3) y for new features which don't crash existing results. z is incremented for bug fixes. "freeze" dependencies: document versions of external code. 44 / 81

  45. 2. Programs can be incorrect 2. Programs can be incorrect 45 / 81 45 / 81

  46. 46 / 81 46 / 81

  47. Why? You make mistakes during development. Software complexity grows during development. Others use your software not as intended. 47 / 81

  48. Techniques Defensive programming. def average (data): assert len(data) > 0 ... 48 / 81

  49. Techniques Defensive programming. def average (data): assert len(data) > 0 ... Automated code tests: unit tests vs. regression tests. def test_average (): assert average([1]) == 1 assert average([1, 2]) == 1.5 assert average([1, 2, 3]) == 2 A collection of unit tests is a test suite . 49 / 81

  50. 3. Code can complex. 3. Code can complex. 50 / 81 50 / 81

  51. 51 / 81 51 / 81

  52. Clean code ("you read code more often than you write it") Choose good names for variables and functions. Write many functions. DRY (don't repeat yourself): Avoid duplications. Write generic code: e.g. don't hard code file names. Document your program incl. the underlying concepts. unit tests enforce better code structure. Read about "clean code". 52 / 81

  53. Other best practices KISS : Keep it simple and stupid: Keep your solutions as simple as possible. YAGN : You ain't gonna need it: Don't overdesign your programs. In the face of ambiguity, refuse the temptation to guess : Don't try to fix invalid input. Complain instead! Understand your programs vs programming by coincidence . Be brave to trash your code and start again. 53 / 81

  54. 4. Programs will run in different 4. Programs will run in different environments environments 54 / 81 54 / 81

  55. Problem: Problem: Your program depends on other Your program depends on other software software Like: Python 3.6 or libraries Like: Python 3.6 or libraries 55 / 81 55 / 81

  56. How to check if my code works on different computers? CI tests = continuous integration tests Automates installation on pristine computer and running tests. Can be integrated in github.com , gitlab.com or gitlab.ethz.ch . 56 / 81

  57. CI Pipeline in gitlab . 57 / 81

  58. Virtual environments Virtual environments try to isolate programs and their dependencies from the rest of the computer. Python has the concept of so called "virtual environments". $ python3 -m venv ... Anaconda supports so called "conda environments" for Python and R . 58 / 81

  59. Sledge hammers for complex Sledge hammers for complex scenarios scenarios 59 / 81 59 / 81

  60. 60 / 81

  61. Concepts Idea: bundle your software and all dependencies Virtual Machine (VM): bundle contains full operating system Container: does not bundle operating system docker : one way to manage and run containers. 61 / 81

  62. 62 / 81

  63. Comparison VM vs Container Advantages Disadvantages 10s of GB at least to ship Virtual Machine Easy to setup startup time: minutes reduced performance lightweight Some learning involved, Container startup time: milliseconds Linux guest only native performance 63 / 81

  64. All problems solved? All problems solved? 64 / 81 64 / 81

  65. 65 / 81 65 / 81

  66. Computer arithmetic is not exact! >>> from math import sin, pi >>> sin(pi) 1.2246467991473532e-16 >>> 0.1 + 0.2 + 0.3 0.6000000000000001 >>> (0.1 + 0.2) + 0.3 == 0.1 + (0.2 + 0.3) False 0.2 10 = 0.0011 0011 0011 0011... 2 Numbers have to be truncated (usually 52 digits for 64 bit floats) as memory is limited. This is not a problem for reproducibility! 66 / 81

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend