Official site: www.sublimetext.com/
Official site: packagecontrol.io/
- Configure
Package Control.sublime-settings
"bootstrapped": true,
# config | |
class GifMakerConfig: | |
__path = './results/' | |
__problem_set = 'random_30_cities/' | |
__en_path = 'elastic_nets/' | |
__som_path = 'self_organizing_map/' | |
source_dir = __path + __problem_set + __en_path |
import numpy as np | |
import matplotlib.pyplot as plt | |
plt.rcParams['font.family'] = 'sans-serif' # 使用するフォント | |
# x軸の目盛線が内向き('in')か外向き('out')か双方向か('inout') | |
plt.rcParams['xtick.direction'] = 'in' | |
# y軸の目盛線が内向き('in')か外向き('out')か双方向か('inout') | |
plt.rcParams['ytick.direction'] = 'in' | |
plt.rcParams['xtick.major.width'] = 1.0 # x軸主目盛り線の線幅 | |
plt.rcParams['ytick.major.width'] = 1.0 # y軸主目盛り線の線幅 |
import requests | |
from bs4 import BeautifulSoup | |
import csv | |
if __name__ == '__main__': | |
csvFile = open("ut_soutyou.csv", 'w', encoding='utf-8_sig', newline='') | |
writer = csv.writer(csvFile) | |
target_url = "http://www.u-tokyo.ac.jp/gen01/b01_03_j.html" | |
# target_url = "http://www.ynu.ac.jp/about/president/successive.html" |
import matplotlib.pyplot as plt | |
import numpy as np | |
import pandas as pd | |
import re | |
import glob | |
plt.rcParams['font.family'] = 'sans-serif' # 使用するフォント | |
# x軸の目盛線が内向き('in')か外向き('out')か双方向か('inout') | |
plt.rcParams['xtick.direction'] = 'in' | |
# y軸の目盛線が内向き('in')か外向き('out')か双方向か('inout') | |
plt.rcParams['ytick.direction'] = 'in' |
import numpy as np | |
import matplotlib.pyplot as plt | |
menMeans = (5, 15, 30, 40) | |
menStd = (2, 3, 4, 5) | |
ind = np.arange(4) # the x locations for the groups | |
width = 0.7 | |
labels = ('A', 'B', 'C', 'D') | |
# Pull the formatting out here | |
bar_kwargs = {'width': width, 'color': 'y', 'linewidth': 2, 'zorder': 5} |
import numpy as np | |
import matplotlib.pyplot as plt | |
plt.rcParams['font.family'] = 'sans-serif' # 使用するフォント | |
# x軸の目盛線が内向き('in')か外向き('out')か双方向か('inout') | |
plt.rcParams['xtick.direction'] = 'in' | |
# y軸の目盛線が内向き('in')か外向き('out')か双方向か('inout') | |
plt.rcParams['ytick.direction'] = 'in' | |
plt.rcParams['xtick.major.width'] = 1.0 # x軸主目盛り線の線幅 | |
plt.rcParams['ytick.major.width'] = 1.0 # y軸主目盛り線の線幅 | |
plt.rcParams['font.size'] = 8 # フォントの大きさ |
Official site: www.sublimetext.com/
Official site: packagecontrol.io/
Package Control.sublime-settings
"bootstrapped": true,
Official site: brew.sh/
brew update && brew upgrade && brew cleanup
brew update