Google RLint: Reformatting R Code to Follow the Google St Bedienungsanleitung Seite 10

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 19
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 9
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)
Seitenansicht 9
1 2 ... 5 6 7 8 9 10 11 12 13 14 15 ... 18 19

Kommentare zu diesen Handbüchern

Keine Kommentare