RStudio

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search
RStudio
DeveloperPosit PBC
Initial release28 February 2011; 15 years ago (2011-02-28)[1]
Repository
  • {{URL|example.com|optional display text}}Lua error in Module:EditAtWikidata at line 29: attempt to index field 'wikibase' (a nil value).
Written inJava, C++, JavaScript[2]
Engine
    Lua error in Module:EditAtWikidata at line 29: attempt to index field 'wikibase' (a nil value).
    Operating systemUbuntu, Fedora, Red Hat Linux, openSUSE, macOS, Windows NT
    PlatformIA-32, x86-64; Qt
    LicenseGNU Affero General Public License v3[3]
    Websiteposit.co/products/open-source/rstudio

    RStudio IDE (or RStudio) is an integrated development environment for R, a programming language for statistical computing and graphics. It's available in two formats: RStudio Desktop is a regular desktop application while RStudio Server runs on a remote server and allows accessing RStudio using a web browser. The RStudio IDE is a product of Posit PBC (formerly RStudio PBC, formerly RStudio Inc.).

    Reproducible analyses with vignettes

    [edit | edit source]

    A strength of RStudio is its support for reproducible analyses[4] with R Markdown vignettes. These allow users to mix text with code in R, Python, Julia, shell scripts, SQL, Stan, JavaScript, C, C++, Fortran, and others,[5] similar to Jupyter Notebooks. R Markdown can be used to create dynamic reports that are automatically updated when new data become available. These reports can also be exported in various formats, including HTML, PDF, Microsoft Word, and LaTeX, with templates specific to the requirements of many scientific journals.[6]

    R Markdown vignettes and Jupyter notebooks make the data analysis completely reproducible. R Markdown vignettes have been included as appendices with tutorials on Wikiversity.[7]

    In 2022, Posit announced an R Markdown-like publishing system called Quarto. In addition to combining results of R, code and results using Python, Julia, Observable JavaScript, and Jupyter notebooks can also be used in Quarto documents. Compared to the file extension .Rmd that R Markdown has, Quarto documents have the file extension .qmd.[8]

    One difference between R Markdown files and Quarto documents is defining options in code chunks. In R Markdown, they would be inline within the curly brackets.

    ```{r chunk_name, echo=FALSE, warning=FALSE}
    print(42)
    ```
    

    In contrast, Quarto documents define the chunk options below the curly brackets, prefixed using a pound character and vertical pipe (or "hash-pipe").

    ```{r}
    #| label: chunk_name
    #| echo: false
    #| warning: false
    print(42)
    ```
    

    Licensing model

    [edit | edit source]

    The RStudio integrated development environment (IDE) is available with the GNU Affero General Public License version 3. The AGPL v3 is an open source license that guarantees the freedom to share the code.

    RStudio Desktop and RStudio Server are both available in free and fee-based (commercial) editions. OS support depends on the format/edition of the IDE. Prepackaged distributions of RStudio Desktop are available for Windows, macOS, and Linux. RStudio Server and Server Pro run on Debian, Ubuntu, Red Hat Linux, CentOS, openSUSE and SLES.[9]

    Overview and history

    [edit | edit source]

    The RStudio IDE is partly written in the C++ programming language and uses the Qt framework for its graphical user interface.[10] The bigger percentage of the code is written in Java. JavaScript is also used.[11]

    Work on the RStudio IDE started around December 2010,[12] and the first public beta version (v0.92) was officially announced in February 2011.[1] Version 1.0 was released on 1 November 2016.[13] Version 1.1 was released on 9 October 2017.[14]

    Addins

    [edit | edit source]

    The RStudio IDE provides a mechanism for executing R functions interactively from within the IDE through the Addins menu.[15] This enables packages to include graphical user interfaces (GUIs) for increased accessibility. Popular R packages that use this feature include:

    • bookdown – a knitr extension to create books
    • colourpicker – a graphical tool to pick colours for plots
    • datasets.load – a graphical tool to search and load datasets
    • googleAuthR – Authenticate with Google APIs

    Development

    [edit | edit source]

    The RStudio IDE is developed by Posit, PBC, a public-benefit corporation[16] founded by J. J. Allaire,[17] creator of the programming language ColdFusion. Posit has no formal connection to the R Foundation, a not-for-profit organization located in Vienna, Austria,[18] which is responsible for overseeing development of the R environment for statistical computing. Posit was formerly known as RStudio Inc. In July 2022, it announced that it changed its name to Posit, to signify its broadening exploration towards other programming languages such as Python.[19]

    See also

    [edit | edit source]

    Lua error in mw.title.lua at line 392: bad argument #2 to 'title.new' (unrecognized namespace name 'Portal').

    References

    [edit | edit source]
    • Lua error in Module:Cite_Q/config at line 10: attempt to index field 'wikibase' (a nil value).
    • Lua error in Module:Cite_Q/config at line 10: attempt to index field 'wikibase' (a nil value).
    • Lua error in Module:Cite_Q/config at line 10: attempt to index field 'wikibase' (a nil value).
    • Lua error in Module:Cite_Q/config at line 10: attempt to index field 'wikibase' (a nil value).
    • Lua error in Module:Cite_Q/config at line 10: attempt to index field 'wikibase' (a nil value).

    Notes

    [edit | edit source]
    1. ^ a b Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    2. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    3. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    4. ^ Reproducibility is key in science. In The Logic of Scientific Discovery, Karl Popper wrote, "non-reproducible single occurrences are of no significance to science." But a theory is "falsified only if we discover a reproducible effect which refutes the theory". Popper (1968, p. 86). However, reproducibility is not easy to obtain. In a 2016 survey of over 1,500 scientists, 52% agreed that there was "a significant crisis" in the reproducibility of scientific results. Another 38% said there was "a slight crisis"; 7% "didn't know", and only 3% said there was no crisis. Worse, "more than 70% of researchers had tried and failed to reproduce another scientist's experiments, and more than half had failed to reproduce their own experiments (emphasis added). See Baker (2016).
    5. ^ Xie et al. (2023, esp. sec. 2.7).
    6. ^ Xie, Allaire, and Grolemund (2023).
    7. ^ e.g., v:US Gross Domestic Product (GDP) per capita and v:Forecasting nuclear proliferation, accessed 5 January 2024. Many more examples are included in Xie, Dervieux, and Riederer (2023).
    8. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    9. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    10. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    11. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    12. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    13. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    14. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    15. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    16. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    17. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    18. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    19. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    [edit | edit source]
    • Lua error in Module:Official_website at line 94: attempt to index field 'wikibase' (a nil value).