我想打开一些像这样的数据:
tailles en centimetres
151 163 165 168 170 173 175 179
152 163 165 168 171 173 175 179
157 164 166 169 172 174 176 180
159 164 166 169 172 174 176 180
160 164 167 169 172 174 177 181
160 164 167 169 172 174 177 181
160 164 167 169 173 174 177 181
161 164 168 169 173 175 178 181
161 165 168 170 173 175 178 186
162 165 168 170 173 175 179 187
进入:
title : "tailles en centimetres" (the first line of the file)
data : 151 163 165 168 170 173 175 179 152 163 165 168 171 173 175 179 157 164 166 169 172 174 176 180 159 164 166 169 172 174 176 180 160 164 167 169 172 174 177 181 160 164 167 169 172 174 177 181 160 164 167 169 173 174 177 181 161 164 168 169 173 175 178 181 161 165 168 170 173 175 178 186 162 165 168 170 173 175 179 187 (a one line numeric piece of data)
然后我将使用它来使用以下命令跟踪直方图:
hist(data,main=title)
我使用了它,基本上只保留第一列数据,然后将其转换为“数字”类型的数据,然后将其转换为一个直方图。
a=read.table("data.txt")
a<-as.numeric(a[1,])
hist(a)