Manual
Manuals
Brands
Google Manuals
Software
RLint: Reformatting R Code to Follow the Google Style Guide
1
2
3
4
5
6
7
8
9
10
Google Confidential and Proprietary
Ex: Indentation
Code
if (x == 5)
while (x > 1) #
R-bleed bug
? ;)
x <- x - 1
print(x)
Corrected code
if (x == 5)
while (x > 1)
x <- x - 1
print(x)
1
...
...
8
9
10
11
12
...
...
19