DiaModality 0.2.0__tar.gz → 0.2.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: DiaModality
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: Tool to plot modality vector diagrams
5
5
  Author-email: konung-yaropolk <yaropolk1995@gmail.com>
6
6
  License: MIT License
@@ -122,8 +122,8 @@ for file in files:
122
122
  file_path = os.path.join(script_dir, file)
123
123
 
124
124
  # Parse data from csv file
125
- new_csv = csv.LoadCsv(file_path)
126
- data, binarization = new_csv.ParseCsv(3, 3)
125
+ new_csv = csv.OpenFile(file_path)
126
+ data, binarization = new_csv.GetRows(3, 3)
127
127
 
128
128
  # Make figure:
129
129
  plot = plt.ModalityPlot(
@@ -144,6 +144,7 @@ for file in files:
144
144
  # else draw trimodal vectors only
145
145
  whole_sum=True, # Calculate all three modality vectors despite binarization
146
146
  figsize=(10, 10),
147
+ dpi=100,
147
148
  title='Modality Diagram Example',
148
149
  colors=(
149
150
  'tab:green', # Set 1 color
@@ -77,8 +77,8 @@ for file in files:
77
77
  file_path = os.path.join(script_dir, file)
78
78
 
79
79
  # Parse data from csv file
80
- new_csv = csv.LoadCsv(file_path)
81
- data, binarization = new_csv.ParseCsv(3, 3)
80
+ new_csv = csv.OpenFile(file_path)
81
+ data, binarization = new_csv.GetRows(3, 3)
82
82
 
83
83
  # Make figure:
84
84
  plot = plt.ModalityPlot(
@@ -99,6 +99,7 @@ for file in files:
99
99
  # else draw trimodal vectors only
100
100
  whole_sum=True, # Calculate all three modality vectors despite binarization
101
101
  figsize=(10, 10),
102
+ dpi=100,
102
103
  title='Modality Diagram Example',
103
104
  colors=(
104
105
  'tab:green', # Set 1 color
@@ -20,7 +20,7 @@ class __Figure():
20
20
  linewidth=0.5,
21
21
  alpha=0.8,
22
22
  figsize=(10, 10),
23
- dpi=300,
23
+ dpi=100,
24
24
  title='',
25
25
  ) -> None:
26
26
 
@@ -0,0 +1 @@
1
+ __version__ = "0.2.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: DiaModality
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: Tool to plot modality vector diagrams
5
5
  Author-email: konung-yaropolk <yaropolk1995@gmail.com>
6
6
  License: MIT License
@@ -122,8 +122,8 @@ for file in files:
122
122
  file_path = os.path.join(script_dir, file)
123
123
 
124
124
  # Parse data from csv file
125
- new_csv = csv.LoadCsv(file_path)
126
- data, binarization = new_csv.ParseCsv(3, 3)
125
+ new_csv = csv.OpenFile(file_path)
126
+ data, binarization = new_csv.GetRows(3, 3)
127
127
 
128
128
  # Make figure:
129
129
  plot = plt.ModalityPlot(
@@ -144,6 +144,7 @@ for file in files:
144
144
  # else draw trimodal vectors only
145
145
  whole_sum=True, # Calculate all three modality vectors despite binarization
146
146
  figsize=(10, 10),
147
+ dpi=100,
147
148
  title='Modality Diagram Example',
148
149
  colors=(
149
150
  'tab:green', # Set 1 color
@@ -1 +0,0 @@
1
- __version__ = "0.2.0"
File without changes
File without changes
File without changes
File without changes