csv

「csv」の編集履歴(バックアップ)一覧に戻る

csv - (2013/05/14 (火) 16:53:03) のソース

The first row of the data file should contain the column names.

#Data Frame 
-------------- 
 Hight, Weight
 170, 45
 158, 50
 165, 55
--------------

#Import data from CSV 
myData<-read.table("c://data.csv",sep=",")


















----