Rmarkdown / Knitr) 35 7.1 Rmarkdown

Total Page:16

File Type:pdf, Size:1020Kb

Rmarkdown / Knitr) 35 7.1 Rmarkdown Reproducible Research Release 1.0 Fotis E. Psomopoulos Oct 24, 2018 Table of Contents 1 Setting up 3 1.1 Git....................................................3 1.2 Jupyter..................................................3 1.3 R / RStudio................................................5 1.4 Install the R Kernel for Jupyter.....................................5 2 Introduction to the Reproducible analysis and Research Transparency workshop7 2.1 Learning objectives for this workshop:.................................7 2.2 Replication and reproduction......................................7 2.3 Science retracts paper without agreement of lead author.........................7 2.4 Retracted, but not fraud.........................................8 2.5 The Four Facets of reproducibility:...................................8 2.6 References / Sources...........................................8 3 Transparent, Reproducible and Open Research9 3.1 Transparency...............................................9 3.2 Questionable Research Practice..................................... 11 3.3 Reproducibility.............................................. 11 3.4 Open reporting of results......................................... 12 3.5 References / Sources........................................... 13 4 Tools and Platforms for Reproducibility and Transparency in research 15 4.1 R And The History of Reproducible Research.............................. 15 4.2 The Open Science Framework...................................... 16 4.3 Dryad................................................... 16 4.4 Figshare................................................. 16 4.5 Zenodo.................................................. 17 4.6 References / Sources........................................... 17 5 Jupyter Notebook for Open Science 19 5.1 Introduction to Markdown........................................ 19 5.2 Markdown................................................ 20 5.3 So, what is a Jupyter notebook?..................................... 20 5.4 Cool! How do I install Jupyter?..................................... 21 5.5 Ok, I’m set! What’s next?........................................ 21 5.6 The Future of Jupyter.......................................... 25 5.7 Reading material............................................. 26 i 5.8 References / Sources........................................... 26 6 R for Reproducible Scientific Analysis (Jupyter) 27 6.1 Data.................................................... 27 6.2 Code and document........................................... 27 6.3 Loading and Cleaning Data....................................... 28 6.4 Subsetting our data............................................ 28 6.5 Using the vegan package........................................ 29 6.6 Results.................................................. 30 6.7 Conclusions............................................... 33 6.8 References / Sources........................................... 33 7 R for Reproducible Scientific Analysis (RMarkdown / knitr) 35 7.1 RMarkdown............................................... 35 7.2 Creating a .Rmd File........................................... 37 7.3 Anatomy of Rmarkdown file....................................... 37 7.4 Chunk Labels............................................... 39 7.5 Chunk Options.............................................. 39 7.6 Global Chunk Options.......................................... 40 7.7 Tables................................................... 40 7.8 Citations and Bibliography........................................ 41 7.9 Bibliography............................................... 41 7.10 Placement................................................ 42 7.11 Citation Styles.............................................. 42 7.12 Citations................................................. 42 7.13 Publishing on RPubs........................................... 42 7.14 Amazing Resources for learning Rmarkdown.............................. 43 7.15 References / Sources........................................... 43 8 Versioning with Git 45 8.1 Software Carpentry source lesson.................................... 45 8.2 Automated Version Control....................................... 45 8.3 How can version control help me make my work more open?..................... 46 8.4 Storing our newly created Jupyter file to GitHub............................ 47 8.5 References / Sources........................................... 50 9 Docker and Reproducibility 51 9.1 Docker.................................................. 51 9.2 When to build a Docker image...................................... 52 9.3 Distributing a Docker Image....................................... 52 9.4 Running a Docker image......................................... 52 9.5 Jupyter, Docker, MyBinder........................................ 53 9.6 References / Sources........................................... 54 10 Indices and tables 55 ii Reproducible Research, Release 1.0 Contents: Table of Contents 1 Reproducible Research, Release 1.0 2 Table of Contents CHAPTER 1 Setting up 1.1 Git If Git is not already available on your machine you can try to install it via your distro’s package manager. For Debian/Ubuntu run sudo apt-get install git and for Fedora run sudo yum install git Windows • https://git-for-windows.github.io/ • Download the Git for Windows installer. • Run the installer In any case, create also an account on GitHub - it will be useful for the hand-on exercises. 1.2 Jupyter Jupyter notebook is an interactive web application that allows you to type and edit lines of code and see the output. The software requires Python installation, but currently supports interaction with over 40 languages. Jupyter notebook examples 1.2.1 Installation Jupyter install instructions For new users, installation of Anaconda is highly recommended. Anaconda conveniently installs Python, the Jupyter Notebook, and other commonly used packages for scientific computing and data science. Use the following installation steps: 1. Download Anaconda. We recommend downloading Anaconda’s latest Python 3 version (currently Python 3.5). 2. Install the version of Anaconda which you downloaded, following the instructions on the download page. 3 Reproducible Research, Release 1.0 Install on UNIX machines: First we will install Anaconda, a package manager for Python libraries. curl-OL https://3230d63b5fc54e62148e-c95ac804525aac4b6dba79b00b39d1d3.ssl.cf1. ,!rackcdn.com/Anaconda2-2.4.0-Linux-x86_64.sh bash Anaconda2-2.4.0-Linux-x86_64.sh Install on Mac OS X: First we will install Anaconda, a package manager for Python libraries. curl-OL http://repo.continuum.io/archive/Anaconda2-4.1.1-MacOSX-x86_64.sh bash Anaconda2-4.1.1-MacOSX-x86_64.sh-b (If you are prompted, type Enter, then press Enter through the instructions. Be careful not to keep pressing Enter without reading otherwise you will end up saying No. You will need to type ‘Yes’ to continue with the installation.) After Anaconda install has finished, type: source~/.bashrc conda install jupyter conda install-c r r r-essentials This will install packages allowing you to open either a new Python .ipynb or an R .ipynb. Navigate to the directory on your computer with files you want to explore. Then type: jupyter notebook This will open your browser with a list of files. Click on the “New” and bring down the pull-down menu. Under ‘Notebooks’, click on either R or Python language to start your new notebook! You should see the files in the repository. 1.2.2 Using Jupyter notebooks: The main keyboard command to remember is how to execute the code from a cell. Type code into a cell and then hit Shift-Enter. If you’re in Python 2, type: print"Hello World!" or for Python 3: print("Hello World!") Then press Shift-Enter For more instructions, the Help menu has a good tour and detailed information. Notebooks can be downloaded locally by going to the File menu, then selecting Download and choosing a file type to download. 1.2.3 References for learning Python • http://rosalind.info/problems/locations/ • http://learnpythonthehardway.org/book/ 4 Chapter 1. Setting up Reproducible Research, Release 1.0 • http://www.learnpython.org/ • http://www.pythontutor.com/visualize.html#mode=edit 1.3 R / RStudio R is a programming language that is especially powerful for data exploration, visualization, and statistical analysis. To interact with R, we use RStudio. Windows Install R by downloading and running the correct installer file from CRAN. Also, please install the RStudio IDE. Note that if you have separate user and admin accounts, you should run the installers as administrator (right-click on .exe file and select “Run as administrator” instead of double-clicking). Otherwise problems may occur later, for example when installing R packages. Linux You can download the binary files for your distribution from CRAN. Or you can use your package manager (e.g. for Debian/Ubuntu run sudo apt-get install r-base and for Fedora run sudo yum install R). Also, please install the RStudio IDE. 1.3.1 Install the required packages install.packages(c("dplyr","tidyr","vegan","ggplot2")); 1.4 Install the R Kernel for Jupyter Jupyter by default supports python, but this functionality can be expanded by using additional kernels. For our case, we will use also the R kernel. After launching R, run the following commands: install.packages('devtools') devtools::install_github('IRkernel/IRkernel') IRkernel::installspec() # to register the kernel in the current R installation That’s it, all
Recommended publications
  • Introduction to Ggplot2
    Introduction to ggplot2 Dawn Koffman Office of Population Research Princeton University January 2014 1 Part 1: Concepts and Terminology 2 R Package: ggplot2 Used to produce statistical graphics, author = Hadley Wickham "attempt to take the good things about base and lattice graphics and improve on them with a strong, underlying model " based on The Grammar of Graphics by Leland Wilkinson, 2005 "... describes the meaning of what we do when we construct statistical graphics ... More than a taxonomy ... Computational system based on the underlying mathematics of representing statistical functions of data." - does not limit developer to a set of pre-specified graphics adds some concepts to grammar which allow it to work well with R 3 qplot() ggplot2 provides two ways to produce plot objects: qplot() # quick plot – not covered in this workshop uses some concepts of The Grammar of Graphics, but doesn’t provide full capability and designed to be very similar to plot() and simple to use may make it easy to produce basic graphs but may delay understanding philosophy of ggplot2 ggplot() # grammar of graphics plot – focus of this workshop provides fuller implementation of The Grammar of Graphics may have steeper learning curve but allows much more flexibility when building graphs 4 Grammar Defines Components of Graphics data: in ggplot2, data must be stored as an R data frame coordinate system: describes 2-D space that data is projected onto - for example, Cartesian coordinates, polar coordinates, map projections, ... geoms: describe type of geometric objects that represent data - for example, points, lines, polygons, ... aesthetics: describe visual characteristics that represent data - for example, position, size, color, shape, transparency, fill scales: for each aesthetic, describe how visual characteristic is converted to display values - for example, log scales, color scales, size scales, shape scales, ..
    [Show full text]
  • Regression Models by Gretl and R Statistical Packages for Data Analysis in Marine Geology Polina Lemenkova
    Regression Models by Gretl and R Statistical Packages for Data Analysis in Marine Geology Polina Lemenkova To cite this version: Polina Lemenkova. Regression Models by Gretl and R Statistical Packages for Data Analysis in Marine Geology. International Journal of Environmental Trends (IJENT), 2019, 3 (1), pp.39 - 59. hal-02163671 HAL Id: hal-02163671 https://hal.archives-ouvertes.fr/hal-02163671 Submitted on 3 Jul 2019 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Distributed under a Creative Commons Attribution| 4.0 International License International Journal of Environmental Trends (IJENT) 2019: 3 (1),39-59 ISSN: 2602-4160 Research Article REGRESSION MODELS BY GRETL AND R STATISTICAL PACKAGES FOR DATA ANALYSIS IN MARINE GEOLOGY Polina Lemenkova 1* 1 ORCID ID number: 0000-0002-5759-1089. Ocean University of China, College of Marine Geo-sciences. 238 Songling Rd., 266100, Qingdao, Shandong, P. R. C. Tel.: +86-1768-554-1605. Abstract Received 3 May 2018 Gretl and R statistical libraries enables to perform data analysis using various algorithms, modules and functions. The case study of this research consists in geospatial analysis of Accepted the Mariana Trench, a hadal trench located in the Pacific Ocean.
    [Show full text]
  • Julia: a Fresh Approach to Numerical Computing∗
    SIAM REVIEW c 2017 Society for Industrial and Applied Mathematics Vol. 59, No. 1, pp. 65–98 Julia: A Fresh Approach to Numerical Computing∗ Jeff Bezansony Alan Edelmanz Stefan Karpinskix Viral B. Shahy Abstract. Bridging cultures that have often been distant, Julia combines expertise from the diverse fields of computer science and computational science to create a new approach to numerical computing. Julia is designed to be easy and fast and questions notions generally held to be \laws of nature" by practitioners of numerical computing: 1. High-level dynamic programs have to be slow. 2. One must prototype in one language and then rewrite in another language for speed or deployment. 3. There are parts of a system appropriate for the programmer, and other parts that are best left untouched as they have been built by the experts. We introduce the Julia programming language and its design|a dance between special- ization and abstraction. Specialization allows for custom treatment. Multiple dispatch, a technique from computer science, picks the right algorithm for the right circumstance. Abstraction, which is what good computation is really about, recognizes what remains the same after differences are stripped away. Abstractions in mathematics are captured as code through another technique from computer science, generic programming. Julia shows that one can achieve machine performance without sacrificing human con- venience. Key words. Julia, numerical, scientific computing, parallel AMS subject classifications. 68N15, 65Y05, 97P40 DOI. 10.1137/141000671 Contents 1 Scientific Computing Languages: The Julia Innovation 66 1.1 Julia Architecture and Language Design Philosophy . 67 ∗Received by the editors December 18, 2014; accepted for publication (in revised form) December 16, 2015; published electronically February 7, 2017.
    [Show full text]
  • Revolution R Enterprise™ 7.1 Getting Started Guide
    Revolution R Enterprise™ 7.1 Getting Started Guide The correct bibliographic citation for this manual is as follows: Revolution Analytics, Inc. 2014. Revolution R Enterprise 7.1 Getting Started Guide. Revolution Analytics, Inc., Mountain View, CA. Revolution R Enterprise 7.1 Getting Started Guide Copyright © 2014 Revolution Analytics, Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written permission of Revolution Analytics. U.S. Government Restricted Rights Notice: Use, duplication, or disclosure of this software and related documentation by the Government is subject to restrictions as set forth in subdivision (c) (1) (ii) of The Rights in Technical Data and Computer Software clause at 52.227-7013. Revolution R, Revolution R Enterprise, RPE, RevoScaleR, RevoDeployR, RevoTreeView, and Revolution Analytics are trademarks of Revolution Analytics. Other product names mentioned herein are used for identification purposes only and may be trademarks of their respective owners. Revolution Analytics. 2570 W. El Camino Real Suite 222 Mountain View, CA 94040 USA. Revised on March 3, 2014 We want our documentation to be useful, and we want it to address your needs. If you have comments on this or any Revolution document, send e-mail to [email protected]. We’d love to hear from you. Contents Chapter 1. What Is Revolution R Enterprise? ....................................................................
    [Show full text]
  • Julia: a Modern Language for Modern ML
    Julia: A modern language for modern ML Dr. Viral Shah and Dr. Simon Byrne www.juliacomputing.com What we do: Modernize Technical Computing Today’s technical computing landscape: • Develop new learning algorithms • Run them in parallel on large datasets • Leverage accelerators like GPUs, Xeon Phis • Embed into intelligent products “Business as usual” will simply not do! General Micro-benchmarks: Julia performs almost as fast as C • 10X faster than Python • 100X faster than R & MATLAB Performance benchmark relative to C. A value of 1 means as fast as C. Lower values are better. A real application: Gillespie simulations in systems biology 745x faster than R • Gillespie simulations are used in the field of drug discovery. • Also used for simulations of epidemiological models to study disease propagation • Julia package (Gillespie.jl) is the state of the art in Gillespie simulations • https://github.com/openjournals/joss- papers/blob/master/joss.00042/10.21105.joss.00042.pdf Implementation Time per simulation (ms) R (GillespieSSA) 894.25 R (handcoded) 1087.94 Rcpp (handcoded) 1.31 Julia (Gillespie.jl) 3.99 Julia (Gillespie.jl, passing object) 1.78 Julia (handcoded) 1.2 Those who convert ideas to products fastest will win Computer Quants develop Scientists prepare algorithms The last 25 years for production (Python, R, SAS, DEPLOY (C++, C#, Java) Matlab) Quants and Computer Compress the Scientists DEPLOY innovation cycle collaborate on one platform - JULIA with Julia Julia offers competitive advantages to its users Julia is poised to become one of the Thank you for Julia. Yo u ' v e k i n d l ed leading tools deployed by developers serious excitement.
    [Show full text]
  • Download from a Repository for Fur- Should Be Conducted When Deemed Appropriate by Pub- Ther Development Or Customisation
    Smith and Hayward BMC Infectious Diseases (2016) 16:145 DOI 10.1186/s12879-016-1475-5 SOFTWARE Open Access DotMapper: an open source tool for creating interactive disease point maps Catherine M. Smith* and Andrew C. Hayward Abstract Background: Molecular strain typing of tuberculosis isolates has led to increased understanding of the epidemiological characteristics of the disease and improvements in its control, diagnosis and treatment. However, molecular cluster investigations, which aim to detect previously unidentified cases, remain challenging. Interactive dot mapping is a simple approach which could aid investigations by highlighting cases likely to share epidemiological links. Current tools generally require technical expertise or lack interactivity. Results: We designed a flexible application for producing disease dot maps using Shiny, a web application framework for the statistical software, R. The application displays locations of cases on an interactive map colour coded according to levels of categorical variables such as demographics and risk factors. Cases can be filtered by selecting combinations of these characteristics and by notification date. It can be used to rapidly identify geographic patterns amongst cases in molecular clusters of tuberculosis in space and time; generate hypotheses about disease transmission; identify outliers, and guide targeted control measures. Conclusions: DotMapper is a user-friendly application which enables rapid production of maps displaying locations of cases and their epidemiological characteristics without the need for specialist training in geographic information systems. Enhanced understanding of tuberculosis transmission using this application could facilitate improved detection of cases with epidemiological links and therefore lessen the public health impacts of the disease. It is a flexible system and also has broad international potential application to other investigations using geo-coded health information.
    [Show full text]
  • Gramm: Grammar of Graphics Plotting in Matlab
    Gramm: grammar of graphics plotting in Matlab Pierre Morel1 DOI: 10.21105/joss.00568 1 German Primate Center, Göttingen, Germany Software • Review Summary • Repository • Archive Gramm is a data visualization toolbox for Matlab (The MathWorks Inc., Natick, USA) Submitted: 31 January 2018 that allows to produce publication-quality plots from grouped data easily and flexibly. Published: 06 March 2018 Matlab can be used for complex data analysis using a high-level interface: it supports mixed-type tabular data via tables, provides statistical functions that accept these tables Licence Authors of JOSS papers retain as arguments, and allows users to adopt a split-apply-combine approach (Wickham 2011) copyright and release the work un- with rowfun(). However, the standard plotting functionality in Matlab is mostly low- der a Creative Commons Attri- level, allowing to create axes in figure windows and draw geometric primitives (lines, bution 4.0 International License points, patches) or simple statistical visualizations (histograms, boxplots) from numerical (CC-BY). array data. Producing complex plots from grouped data thus requires iterating over the various groups in order to make successive statistical computations and low-level draw calls, all the while handling axis and color generation in order to visually separate data by groups. The corresponding code is often long, not easily reusable, and makes exploring alternative plot designs tedious (Example code Fig. 1A). Inspired by ggplot2 (Wickham 2009), the R implementation of “grammar of graphics” principles (Wilkinson 1999), gramm improves Matlab’s plotting functionality, allowing to generate complex figures using high-level object-oriented code (Example code Figure 1B). Gramm has been used in several publications in the field of neuroscience, from human psychophysics (Morel, Ulbrich, and Gail 2017), to electrophysiology (Morel et al.
    [Show full text]
  • Figure Properties in Matlab
    Figure Properties In Matlab Which Quentin misquote so correctly that Wojciech kayaks her alkyne? Unrefreshing and unprepared Werner composts her dialects proventriculuses wyte and fidging roundly. Imperforate Sergei coaxes, his sulks subcontract saddled brazenly. This from differential equations in matlab color in figure properties or use git or measurement unit specify the number If your current axes. Note how does temperature approaches a specific objects on a node pointer within a hosting control. Matlab simulink simulink with a plot data values associated with other readers with multiple data set with block diagram. This video explains plot and subplot command and comprehend various features and properties matlab2tikz converts most MATLABR figures including 2D and 3D plots. This effect on those available pixel format function block amplifies this will cover more about polar plots to another. The dimension above idea a polar plot behind the polar equation, along a cardioid. Each part than a matlab plot held some free of properties that tug be changed to. To alternate select an isovalue within long range of values in mere volume data. To applied thermodynamics. While you place using appropriate axes properties, television shows matlab selects a series using. As shown in Figure 1 we showcase a ggplot2 plot brought a legend with by previous R. Code used as a ui figure. Bar matlab 3storemelitoit. In polar plot, you can get information about properties we are a property value ie; we have their respective companies use this allows matrix as. Komutu yazıp enter tuşuna bastıktan sonra aşağıdaki pencere açılır.
    [Show full text]
  • Data Visualization with Ggplot2 : : CHEAT SHEET
    Data Visualization with ggplot2 : : CHEAT SHEET Use a geom function to represent data points, use the geom’s aesthetic properties to represent variables. Basics Geoms Each function returns a layer. GRAPHICAL PRIMITIVES TWO VARIABLES ggplot2 is based on the grammar of graphics, the idea that you can build every graph from the same a <- ggplot(economics, aes(date, unemploy)) continuous x , continuous y continuous bivariate distribution components: a data set, a coordinate system, b <- ggplot(seals, aes(x = long, y = lat)) e <- ggplot(mpg, aes(cty, hwy)) h <- ggplot(diamonds, aes(carat, price)) and geoms—visual marks that represent data points. a + geom_blank() e + geom_label(aes(label = cty), nudge_x = 1, h + geom_bin2d(binwidth = c(0.25, 500)) (Useful for expanding limits) nudge_y = 1, check_overlap = TRUE) x, y, label, x, y, alpha, color, fill, linetype, size, weight alpha, angle, color, family, fontface, hjust, F M A b + geom_curve(aes(yend = lat + 1, lineheight, size, vjust h + geom_density2d() xend=long+1,curvature=z)) - x, xend, y, yend, x, y, alpha, colour, group, linetype, size + = alpha, angle, color, curvature, linetype, size e + geom_jitter(height = 2, width = 2) x, y, alpha, color, fill, shape, size data geom coordinate plot a + geom_path(lineend="butt", linejoin="round", h + geom_hex() x = F · y = A system linemitre=1) e + geom_point(), x, y, alpha, color, fill, shape, x, y, alpha, colour, fill, size x, y, alpha, color, group, linetype, size size, stroke To display values, map variables in the data to visual a + geom_polygon(aes(group = group)) e + geom_quantile(), x, y, alpha, color, group, properties of the geom (aesthetics) like size, color, and x x, y, alpha, color, fill, group, linetype, size linetype, size, weight continuous function and y locations.
    [Show full text]
  • JASP: Graphical Statistical Software for Common Statistical Designs
    JSS Journal of Statistical Software January 2019, Volume 88, Issue 2. doi: 10.18637/jss.v088.i02 JASP: Graphical Statistical Software for Common Statistical Designs Jonathon Love Ravi Selker Maarten Marsman University of Newcastle University of Amsterdam University of Amsterdam Tahira Jamil Damian Dropmann Josine Verhagen University of Amsterdam University of Amsterdam University of Amsterdam Alexander Ly Quentin F. Gronau Martin Šmíra University of Amsterdam University of Amsterdam Masaryk University Sacha Epskamp Dora Matzke Anneliese Wild University of Amsterdam University of Amsterdam University of Amsterdam Patrick Knight Jeffrey N. Rouder Richard D. Morey University of Amsterdam University of California, Irvine Cardiff University University of Missouri Eric-Jan Wagenmakers University of Amsterdam Abstract This paper introduces JASP, a free graphical software package for basic statistical pro- cedures such as t tests, ANOVAs, linear regression models, and analyses of contingency tables. JASP is open-source and differentiates itself from existing open-source solutions in two ways. First, JASP provides several innovations in user interface design; specifically, results are provided immediately as the user makes changes to options, output is attrac- tive, minimalist, and designed around the principle of progressive disclosure, and analyses can be peer reviewed without requiring a “syntax”. Second, JASP provides some of the recent developments in Bayesian hypothesis testing and Bayesian parameter estimation. The ease with which these relatively complex Bayesian techniques are available in JASP encourages their broader adoption and furthers a more inclusive statistical reporting prac- tice. The JASP analyses are implemented in R and a series of R packages. Keywords: JASP, statistical software, Bayesian inference, graphical user interface, basic statis- tics.
    [Show full text]
  • ERC Document on Open Research Data and Data Management Plans
    Open Research Data and Data Management Plans Information for ERC grantees by the ERC Scientific Council Version 4.0 11 August 2021 This document is regularly updated in order to take into account new developments in this rapidly evolving field. Comments, corrections and suggestions should be sent to the Secretariat of the ERC Scientific Council Working Group on Open Science via the address [email protected]. The table below summarizes the main changes that this document has undergone. HISTORY OF CHANGES Version Publication Main changes Page (in the date relevant version) 1.0 23.02.2018 Initial version 2.0 24.04.2018 Part ‘Open research data and data deposition in the 15-17 Physical Sciences and Engineering domain’ added Minor editorial changes; faulty link corrected 6, 10 Contact address added 2 3.0 23.04.2019 Name of WG updated 2 Added text to the section on ‘Data deposition’ 5 Reference to FAIRsharing moved to the general part 7 from the Life Sciences part and extended Added example of the Austrian Science Fund in the 8 section on ‘Policies of other funding organisations’; updated links related to the German Research Foundation and the Arts and Humanities Research Council; added reference to the Science Europe guide Small changes to the text on ‘Image data’ 9 Added reference to the Ocean Biogeographic 10 Information (OBIS) Reformulation of the text related to Biostudies 11 New text in the section on ‘Metadata’ in the Life 11 Sciences part Added reference to openICPSR 13 Added references to ioChem-BD and ChemSpider
    [Show full text]
  • Open Science Toolbox
    Open Science Toolbox A Collection of Resources to Facilitate Open Science Practices Lutz Heil [email protected] LMU Open Science Center April 14, 2018 [last edit: July 10, 2019] Contents Preface 2 1 Getting Started 3 2 Resources for Researchers 4 2.1 Plan your Study ................................. 4 2.2 Conduct your Study ............................... 6 2.3 Analyse your Data ................................ 7 2.4 Publish your Data, Material, and Paper .................... 10 3 Resources for Teaching 13 4 Key Papers 16 5 Community 18 1 Preface The motivation to engage in a more transparent research and the actual implementation of Open Science practices into the research workflow can be two very distinct things. Work on the motivational side has been successfully done in various contexts (see section Key Papers). Here the focus rather lays on closing the intention-action gap. Providing an overview of handy Open Science tools and resources might facilitate the implementation of these practices and thereby foster Open Science on a practical level rather than on a theoretical. So far, there is a vast body of helpful tools that can be used in order to foster Open Science practices. Without doubt, all of these tools add value to a more transparent research. But for reasons of clarity and to save time which would be consumed by trawling through the web, this toolbox aims at providing only a selection of links to these resources and tools. Our goal is to give a short overview on possibilities of how to enhance your Open Science practices without consuming too much of your time.
    [Show full text]