1. ホーム
  2. r

[解決済み] Rで科学的記数法を防ぐには?[重複しています]

2022-02-27 10:44:49

質問

私のプロットは y 軸に e 記法で値を表示しています。どのコマンドを使えば数値で表示できますか?使用したファイルの値は数値形式ですか? ありがとうございます。

どのように解決するのですか?

Rセッション全体で科学的記数法の使用を設定するには scipen オプションを使用します。ドキュメントから ( ?options ):

‘scipen’: integer.  A penalty to be applied when deciding to print
          numeric values in fixed or exponential notation.  Positive
          values bias towards fixed and negative towards scientific
          notation: fixed notation will be preferred unless it is more
          than ‘scipen’ digits wider.

つまり、この値によって科学的記法が発動する可能性がどの程度あるかが決定される。したがって、科学的記数法を防ぐには、単純に大きな正の値を使用します。 999 :

options(scipen=999)