Skip to content

Instantly share code, notes, and snippets.

View rea9r's full-sized avatar

Takuya Akamatsu rea9r

  • Tokyo
View GitHub Profile
@rea9r
rea9r / file0.txt
Last active October 15, 2017 16:53
scikit-learn を使った機械学習モデルの構築(アイリスの品種分類) ref: http://qiita.com/Amatsuka/items/61d4316324c66b766ddf
pip install numpy
pip install scipy
pip install pandas
pip install matplotlib
pip install mglearn
pip install scikit-learn
@rea9r
rea9r / file0.txt
Last active October 9, 2017 12:29
Matplotlibによるデータ可視化 ref: http://qiita.com/Amatsuka/items/939505ca2209341b0667
pip install matplotlib
# -*- coding: utf-8 -*-
import scrapy
from akutagawa_prize.items import AkutagawaPrizeItem
# Scrapyスパイダー
class AkutagawaPrizeSpider(scrapy.Spider):
name = 'akutagawa_prize_list'
allowed_domains = ['www.bunshun.co.jp']
start_urls = ["http://www.bunshun.co.jp/shinkoukai/award/akutagawa/list.html"]