Google RLint: Reformatting R Code to Follow the Google St Instrukcja Użytkownika Strona 10

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 19
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 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)
Przeglądanie stron 9
1 2 ... 5 6 7 8 9 10 11 12 13 14 15 ... 18 19

Komentarze do niniejszej Instrukcji

Brak uwag