3482
правки
Изменения
м
→Расстановка пробелов
<syntaxhighlight lang="rsplus">
if ((x == 1) & (y == 2))
</syntaxhighlight>
Рекомендуется отделять пробелами оператор присвоения значений аргументов:
<syntaxhighlight lang="rsplus">
plot(x,y, lwd=4, col=green, main="My Title")
</syntaxhighlight>
Более корректно:
<syntaxhighlight lang="rsplus">
plot(x,y, lwd = 4, col = green, main = "My Title")
</syntaxhighlight>