0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

データコンペ用ディレクトリ

Posted at

ワークステーションの扱い方

ユーザー名及びパスワード

  • 両方共 kmlab

使用方法

sshの場合

ssh kmlab@192.168.10.120
でログインしてください。

Teamviewerの場合

パートナーIDに581 106 952もしくは192.168.10.120と入力して接続してください。

尚、sshの場合は基本的に複数人がログインしても同時に作業可能。

ディレクトリ構造について

データコンペ用のファイル類は/home/kmlab/compe/H25_COMPEに入っています。
それ以外のディレクトリは星野くんのCUDAで使用していたりするので要注意。

必要なデータの取り出し方

ターミナルからpythonを起動して、

import csv
path= '/home/kmlab/compe/H25_COMPE'
item = csv.reader(open(path + '/Gakusyu/EC_03_ITEM.csv','rb'))
list =[]
for line in item:
  list.append(line) #listオブジェクトに行ごとのデータを代入
#取りたいデータを指定してオブジェクトに代入(商品IDを取得)
item_ID
for i in range(len(list))
  item_ID.append(list[i][2])
#顧客IDの取得
cust = csv.reader(open(path + '/Gakusyu/EC_01_CUST.csv','rb'))
cust_ID =[]
for line in cust:
  cust_ID.append(line[0])

出力するときはprint文をぶち込んでシェルでリダイレクトするのがベストかと、、、。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?