X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=PrintRScript.py;h=db2eeac22288e3e7a1c4e0a12cf0c9372293d2fa;hp=18b387988d9b0eae3840de0a21d4cb2b130e5d55;hb=1fb687c23b19ae4cc88146acf393041356c1df3a;hpb=7f5e0ba6ece181a04d872a7b6eeb2f13b33aa455 diff --git a/PrintRScript.py b/PrintRScript.py index 18b3879..db2eeac 100644 --- a/PrintRScript.py +++ b/PrintRScript.py @@ -435,6 +435,9 @@ def write_afc_graph(self): if self.param['tchi'] : tchi = 'TRUE' else : tchi = 'FALSE' + if self.param['svg'] : svg = 'TRUE' + else : svg = 'FALSE' + with open(self.RscriptsPath['afc_graph'], 'r') as f: txt = f.read() @@ -464,7 +467,8 @@ def write_afc_graph(self): tchi,\ self.param['tchi_min'],\ self.param['tchi_max'],\ - ffr(os.path.dirname(self.fileout))) + ffr(os.path.dirname(self.fileout)),\ + svg) return scripts def print_simi3d(self):