Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Google R スタイルガイドでは、行の長さを最大 80 文字にすることを提案しています。で行の長さをどのように設定するのだろうと思っていましたR。これstataは次のように行われます。
R
stata
set linesize 80
は:
options()$width
あなたが欲しいもの?
次のように設定できます。
options(width=80)