homeLabelBody1=tk.Label(homeFrame,text="Before you can view your data, you need to load a valid .csv patient data file. To do this, you can go to the \"Load Patient Data\"\nsection, press the button, and locate your file within the explorer. The program will tell you if the file was loaded succesfully.",font=("Arial",12),bg="#ffffff")
homeLabelBody2=tk.Label(homeFrame,text="Upon loading your .csv file successfully, you can view its contents in the \"View Patient Data\" section. Any patients needing referral\nwill be flagged in red. You can navigate to specific pages using the input and button at the centre bottom of the window. It is also\npossible to filter the table to only display only patients who need referring, and only those who do not.",font=("Arial",12),bg="#ffffff")
homeLabelBody2.pack(pady=(0,20))
homeLabelHeader4=tk.Label(homeFrame,text="3. Patient Data Analysis",font=("Arial",16,"bold"),bg="#ffffff")
homeLabelHeader4.pack(pady=(50,20))
homeLabelBody3=tk.Label(homeFrame,text="This section will display a variety of information about your .csv file. This includes the total number of patients, how many have been\nreferred and how many haven't (This is also displayed in a pie chart). There are also two tables which show how many missing fields are\npresent in each column, as well as the average value found in that column.",font=("Arial",12),bg="#ffffff")
homeLabelBody3.pack(pady=(0,20))
uploadLabel=tk.Label(uploadFrame,text="Load Patient Data CSV",font=("Arial",20,"bold"),bg="#ffffff")
uploadLabel.pack(pady=20)
uploadButton=tk.Button(uploadFrame,text="Press to Load File",command=upload_file,font=("Arial",12,"bold"),bg="#286c32",fg="white",padx=25,pady=50,relief="flat")
uploadButton.pack(pady=(250,50))
fileLabel=tk.Label(uploadFrame,text="No file selected, load a valid .csv file",font=("Arial",12),bg="#ffffff")
fileLabel.pack(pady=5)
analyseLabel=tk.Label(analyseFrame,text="Patient Data Statistics",font=("Arial",20,"bold"),bg="#ffffff")