简体   繁体   中英

Plotting values over time in R

I have a vector of values: b=read.csv('https://dl.dropbox.com/u/22681355/b.csv')

I would like to plot them with having values 1:2000 on the x-axis representing time and the values of the vector on the y axis.

When I plot them using hist(b) I get the opposite thing with values from 1:2000 on the y axis and the actual values on the x.

How can I reverse this?

Try barplot(b) or plot(b,type="b") instead.

(Your link doesn't work for me.)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM