タグ

2016年2月8日のブックマーク (3件)

  • Python OSError: [Errno 24] Too many open files

    I use Ipython Notebook on Mac OS 10.11.2. I run Python 3.5.1 and Matplotlib 1.5.1 and Seaborn version 0.6.0: %matplotlib inline import matplotlib.pyplot as plt import seaborn as sns I recently started having issues when plotting using Matplotlib/Seaborn. After generating a few plots within the same notebook, the notebook cell where my latest plot is being generated crashes with the error: OSError:

    Python OSError: [Errno 24] Too many open files
    dynamicsoar
    dynamicsoar 2016/02/08
    これ自分も最近同じ問題が出るようになった。自分は Mavericks なので El Capitan のせいではさそう。フォント以外にエクセルファイルで止まることもあり、再現性もない…
  • 岩手県:高校に「ドクターヘリ」のヘリポート 割れる賛否 | 毎日新聞

    救急患者を搬送する「ドクターヘリ」のヘリポートの整備を巡り、岩手県が病院に近い県立高校の敷地内に設置する方針を示し、論議を呼んでいる。ヘリの効率的な運用につながる一方、騒音や事故を不安視する声も根強い。学校敷地内に設置された例は全国でもなく、保護者の賛否も割れている。 ドクターヘリは、医師や看護師が同乗して出動。診断や治療をしながら医療機関に搬送し「空飛ぶ救命室」と呼ばれている。昨年8月現在で、全国38道府県の46機が運航。四国4県分の広さに匹敵する岩手では、30分以内で現場に到着できるため、救命率の向上や後遺症の軽減に役立っている。 新たに設置が検討されているのは盛岡市中心部にある県立杜陵(とりょう)高校。約50メートルの距離に県立中央病院があり、これまで通常は約2.2キロ離れた県警盛岡東署(地上10階建て)の屋上ヘリポートを使用。冬場は凍結などで使えなくなるため、約2.5キロ先の県営野

    岩手県:高校に「ドクターヘリ」のヘリポート 割れる賛否 | 毎日新聞
    dynamicsoar
    dynamicsoar 2016/02/08
    EC 135か。フェネストロンとはいえうるさいか…特に航空機に興味ない人にとっては。ただ離着陸そんな頻繁ではないのかな?自分みたいな航空ファンが高校生だったら嬉しくて毎日遊びに行ってしまうけどなー(邪魔
  • Matplotlib axis label: \theta does not work \Theta does

    I have a weird behaviour in matplotlib. Using the following I get a nice and shiny big theta. As soon as I use \theta instead of \Theta I get heta as an axis label plt.figure(**pd.figpropsHP) line=pd.lineCycler() for i in range(2): for j in range(length-1): velocity[i,j]=(velocity[i,j+1]-velocity[i,j])*1000 #multiplied with sampling rate plt.plot(velocity[i,startstop[0]:startstop[1]],**next(line))

    Matplotlib axis label: \theta does not work \Theta does
    dynamicsoar
    dynamicsoar 2016/02/08
    まさにこれ。\tはtabと解釈されるのか…なるほど。r を頭につけるかバックスラッシュを二重にしろ(後者はややアドホック)と