This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> sessionInfo() | |
R version 4.1.1 (2021-08-10) | |
Platform: x86_64-apple-darwin17.0 (64-bit) | |
Running under: macOS Monterey 12.0.1 | |
Matrix products: default | |
LAPACK: /Library/Frameworks/R.framework/Versions/4.1/Resources/lib/libRlapack.dylib | |
locale: | |
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Language | Coding Standard | Maximum Line Length | source | |
---|---|---|---|---|
Python | Python Enhancement Proposal (PEP8) by Guido van Rossum et. al. | 79 | https://www.python.org/dev/peps/pep-0008/#maximum-line-length | |
R | Google/Tidyverse | 80 | https://style.tidyverse.org/syntax.html#long-lines | |
Java | Google Java Style Guide | 100 | https://google.github.io/styleguide/javaguide.html#s4.4-column-limit | |
PHP | PHP Standard Recommendation 2 (PSR-2) | 80-120 | https://www.php-fig.org/psr/psr-2/ | |
Ruby | AirBnB Ruby Style Guide | 100 | https://github.com/airbnb/ruby#line-length | |
JavaScript | Google Javascript Style Guide | 80 | https://google.github.io/styleguide/jsguide.html#formatting-column-limit | |
CSS | Harry Roberts (a CSS 'architect' and consultant) | 80 | https://cssguidelin.es | |
C++ | Google C++ Style Guide & UPenn CIS 190 | 80 | (https://google.github.io/styleguide/cppguide.html#Line_Length & http://www.cis.upenn.edu/~cis190/fall2014/style.html) | |
Go | GoLang/Effective Go | no limit | https://golang.org/doc/effective_go.html#formatting |