Commit 24ca41ff authored by panos's avatar panos Committed by Jérome Perrin

New example added to illustrate the use of the Plots object

parent 7cd15c8c
M1,M2
0.605703539,0.964730988
0.316191544,0.026733702
0.705934251,0.143290362
0.443313263,0.457859747
0.760824832,0.360404368
0.053600175,0.724183619
0.781035648,0.705351425
0.626433697,0.616910323
0.183075027,0.766356281
'''
Created on 13 Jun 2014
@author: Panos
'''
#===========================================================================
# Copyright 2013 University of Limerick
#
# This file is part of DREAM.
#
# DREAM is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# DREAM is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with DREAM. If not, see <http://www.gnu.org/licenses/>.
# ===========================================================================
from ImportCSVdata import Import_CSV
from Plots import Graphs
filename = ("DataSet.csv")
A=Import_CSV() #call the Import_CSV module and using its method Input_data import the data set from the CSV file to the tool
Data = A.Input_data(filename)
M1 = Data.get('M1',[]) #get from the returned Python dictionary the two data sets:
M2 = Data.get('M2',[])
graph=Graphs() #create a graph object
#create the following charts
graph.Plots(M1, 'M1SimplePlot.jpg')
graph.ScatterPlot(M1, M2, 'Scatterplot.jpg')
graph.Barplot(M2, 'M2Barplot.jpg')
graph.Histogram(M1, 'M1Histogram.jpg')
graph.TwoSetPlot(M1, M2, 'M1M2Plot.jpg')
graph.Pie(M2, 'M2PieChar.jpg')
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment