2014年3月11日 星期二

好用的統計作圖QtiPlot

Qtiplot--統作圖

wiki

QtiPlot 是一個跨平台的數據分析和科學可視化軟體。它的主要開發者是 Ion Vasilief。
QtiPlot 的界面與同類軟體OriginSigmaPlot[1] 類似。此類軟體大多是專利軟體,且價格昂貴,因此,很多人(尤其是大學生)常用QtiPlot 來替代其它同類軟體[2]。QtiPlot 可以用於製作二維和三維的數據圖表,並具有許多諸如曲線擬合這樣的數據分析功能。Plotting of 3D data can be rendered using OpenGLusing the Qwt3D libraries.
QtiPlot 屬於自由軟體,採用GNU 通用公共許可證(GPL)發布。針對微軟 Windows、某幾種Linux發行版以及Mac OS X平台,QtiPlot 同時提供編譯好的二進制文件。使用者須要付費才能下載和使用這些二進制版本文件(demo版現在可以免費下載,但只能使用很短的時間);但是,任何人都可以在GPL下自由地重新編譯和分發QtiPlot[3]。目前,在Linux平台和Windows平台,都有這樣的第三方分發者

ubuntu的使用者可以直接在「軟體中心安裝」
官網:http://soft.proindependent.com/qtiplot.html 
相關論壇:http://soft.proindependent.com/doc/manual-en/index.html 

學HTML, CSS, JS, jQuery的好幫手

學HTML, CSS, JS, jQuery

朋友和我分享的學習網站,做得很酷,在此跟大家分享!
http://ccsp.ntumobile.org/webdev/html.html#/

2014年3月5日 星期三

Git 恢復

Git 恢復

復原已被更動的檔案

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git checkout -- <file>..." to discard changes in working directory)

        modified:   benchmarks.rb
$ git checkout -- benchmarks.rb
$ git status
On branch master
Changes to be committed:
  (use "git reset HEAD <file>..." to unstage)

        modified:   README.txt
在上述文字可看到該變更已被復原。