Skip to content
Snippets Groups Projects
Commit 928086b0 authored by Jörg Martin's avatar Jörg Martin
Browse files

First Review correction

parent d523297e
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@ from setuptools import find_packages
from setuptools import setup
setup(name='vpvc-sample-size',
version='0.1',
version='0.2',
author='Joerg Martin',
author_email='joerg.martin@ptb.de',
description='Sample size planning using the VPVC',
......
......@@ -38,7 +38,7 @@ def run_gui(fontsize=fontsize):
default_font = TkFont.nametofont("TkDefaultFont")
default_font.configure(size=fontsize)
root.title('Sample size planning using the VPVC')
status_variable = tk.StringVar(root, value='Enter prior knowledge and the desired uncertainty threshold and press "Compute Sample Size"')
status_variable = tk.StringVar(root, value='Enter prior knowledge and the desired uncertainty threshold and press "Compute sample size"')
root.tk_setPalette(background='#ffffff', foreground='#000000',
activeBackground='#eeeeee', activeForeground='#000000')
# upper menu
......
......@@ -107,7 +107,7 @@ class PriorMenu():
mean_upper_quartile_entry = tk.Entry(self.frame,
font=self.font)
mean_upper_quartile_entry.insert(0, 1.2)
disp_median_type_label = tk.Label(self.frame, text='Dispersion', font=self.bold_font)
disp_median_type_label = tk.Label(self.frame, text='Data dispersion', font=self.bold_font)
disp_median_label = tk.Label(self.frame,
text='Median')
disp_median_entry = tk.Entry(self.frame, font=self.font)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment