Course work examples
AI Projects:
Learning how to leverage AI has taught me how to create charts like the ones shown below. I have gained the skills to efficiently communicate with AI to produce well organized and structured charts and data models along with other projects.



Reseach Papers:
Click the below link to access a sample research paper that I wrote based on the ethics of working conditions.
Example Code:
Below are two pieces of code that I wrote using Python (left) and Colab (right). The Python program creates a file names sales.txt, and puts the five sales numbers into it. The second program then prompts the user for the file, then calculates the total of the five numbers giving you the total sales. The Colab program is pulling data from an excel file to then convert it to a data frame, then organizes the data by employee name, and filters employees earning more than $500 of regular pay. Though this is introductory code, it taught me how to read code, and be able to put the puzzle pieces together to understand higher level code.
FIRST PROGRAM
out_file = open (‘sales.txt’,’w’)
out_file.write(‘500\n’)
out_file.write(‘600\n’)
out_file.write(‘700\n’)
out_file.write(‘800\n’)
out_file.write(‘900\n’)
out_file.close()
SECOND PROGRAM
filename=input(‘Enter the file you want to open: ‘)
infile = open(filename, ‘r’)
num1 = int(infile.readline())
num2 = int(infile.readline())
num3 = int(infile.readline())
num4 = int(infile.readline())
num5 = int(infile.readline())
total = num1 + num2 + num3 + num4 + num5
print(‘The total sales are: $’, format (total, ‘,.2f’), sep = ”)
