DiaModality 0.2.1__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.1
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
@@ -123,7 +123,7 @@ for file in files:
123
123
 
124
124
  # Parse data from csv file
125
125
  new_csv = csv.OpenFile(file_path)
126
- data, binarization = new_csv.ParseCsv(3, 3)
126
+ data, binarization = new_csv.GetRows(3, 3)
127
127
 
128
128
  # Make figure:
129
129
  plot = plt.ModalityPlot(
@@ -144,7 +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=200,
147
+ dpi=100,
148
148
  title='Modality Diagram Example',
149
149
  colors=(
150
150
  'tab:green', # Set 1 color
@@ -78,7 +78,7 @@ for file in files:
78
78
 
79
79
  # Parse data from csv file
80
80
  new_csv = csv.OpenFile(file_path)
81
- data, binarization = new_csv.ParseCsv(3, 3)
81
+ data, binarization = new_csv.GetRows(3, 3)
82
82
 
83
83
  # Make figure:
84
84
  plot = plt.ModalityPlot(
@@ -99,7 +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=200,
102
+ dpi=100,
103
103
  title='Modality Diagram Example',
104
104
  colors=(
105
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.1
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
@@ -123,7 +123,7 @@ for file in files:
123
123
 
124
124
  # Parse data from csv file
125
125
  new_csv = csv.OpenFile(file_path)
126
- data, binarization = new_csv.ParseCsv(3, 3)
126
+ data, binarization = new_csv.GetRows(3, 3)
127
127
 
128
128
  # Make figure:
129
129
  plot = plt.ModalityPlot(
@@ -144,7 +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=200,
147
+ dpi=100,
148
148
  title='Modality Diagram Example',
149
149
  colors=(
150
150
  'tab:green', # Set 1 color
@@ -1 +0,0 @@
1
- __version__ = "0.2.1"
File without changes
File without changes
File without changes
File without changes