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.
簡単な質問があります。制限 (0.4 ~ 1.0) を使用して c の棒グラフを作成する必要があり、x 軸 (1 ~ 100) のすべての名前が必要です。
name=seq(1:1000) c=runif(1000,0.4,1.0) c=round(c,2)
どうやってやるの?私はちょうど試してみました
barplot(c,names.arg=name, ylim=c(0.4,1.0))
ありがとうございました