Class: ScatterPlot

Inherits:
Object
  • Object
show all
Defined in:
lib/scatter_plot/scatter_plot.rb

Instance Method Summary collapse

Constructor Details

#initialize(valuex, valuey, params) ⇒ ScatterPlot

Returns a new instance of ScatterPlot.



41
42
43
44
45
# File 'lib/scatter_plot/scatter_plot.rb', line 41

def initialize(valuex,valuey,params)
	@value_x=check_val(valuex)
	@value_y=check_val(valuey)
	@params=self.check_par(params)
end

Instance Method Details

#check_par(params) ⇒ Object



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'lib/scatter_plot/scatter_plot.rb', line 47

def check_par(params)
       	hash = Hash.new
	permitted = ["title","x_label","y_label","vertical","n_bins","density","gruop_by","gradient","legend","width","height","file_name"]
       	keys = params.keys
       	keys.each{ |key|
               	 if permitted.include?(key)==false
                       	raise "Error : Permitted key are title,x_label,y_label,vertical,n_bins,density,group_by,gardient,legend,width,height"
                	end
       	}
	
	if params["title"]==nil
               	hash["title"]="A sample Graph"
       	else
               	 hash["title"]=params["title"]
       	end

	if params["x_label"]==nil
                       hash["x_label"]="Categories"
               else
                        hash["x_label"]=params["x_label"]
               end

	if params["y_label"]==nil
                       hash["y_label"]="Values"
               else
                       hash["y_label"]=params["y_label"]
               end

	if params["vertical"]==nil
               	hash["vertical"]=true
      		else
               	hash["vertical"]=params["vertical"]
       	end

 	if params["legend"]==nil
       	        hash["legend"]=false
     		else
               	hash["legend"]=params["legend"]
       	end
	
	if params["n_bins"]==nil
                       hash["n_bins"]=10
               else
                       hash["n_bins"]=params["n_bins"]
               end
	
	if params["density"]==nil
                       hash["density"]=false
               else
                       hash["density"]=params["density"]
               end
	
	if params["group_by"]==nil
                       hash["group_by"]=nil
               else
                       hash["group_by"]=params["group_by"]
               end

	if params["gradient"]==nil
                       hash["gradient"]=false
               else
                       hash["gradient"]=params["gradient"]
               end

	if params["width"]==nil
               	hash["width"]=1500
       	else
               	hash["width"]=params["width"]
       	end

	if params["height"]==nil
               	hash["height"]=800
       	else
               	hash["height"]=params["height"]
       	end

       	if params["file_name"]==nil
               	hash["file_name"]="sample.jpg"
       	else
               	hash["file_name"]=params["file_name"]
      		end

	params_map = HashMap.new(hash)
       	return params_map
end

#getParamsObject



142
143
144
# File 'lib/scatter_plot/scatter_plot.rb', line 142

def getParams
        @params
end

#getValuexObject



133
134
135
# File 'lib/scatter_plot/scatter_plot.rb', line 133

def getValuex
	@value_x 
end

#getValueyObject



137
138
139
# File 'lib/scatter_plot/scatter_plot.rb', line 137

def getValuey
        @value_y
end

#saveObject



147
148
149
150
151
152
153
# File 'lib/scatter_plot/scatter_plot.rb', line 147

def save
	begin
       		a = Java::ComDomain::clocomics
      			a.save_scatter(self.getValuex,self.getValuey,self.getParams)
	rescue Exception => ex
	end
end

#viewObject



154
155
156
157
158
159
160
# File 'lib/scatter_plot/scatter_plot.rb', line 154

def view
	 begin
                       a = Java::ComDomain::clocomics
                       a.view_scatter(self.getValuex,self.getValuey,self.getParams)
               rescue Exception => ex
               end
end