Project Showcase

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.

Gantt Chart project.
Gantt Chart
AI Project constructing a Entity Relationship Model.
Entity Relationship Model
AI project creating a Use Case Model.
Use Case Model

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 = ”)

Logan Yuhas using Colab for a coding project.

About MY portfolio

The goal of this portfolio is to display myself as the young professional I am. With the experience I have gained in all avenues of my life, I hope as you explore through my portfolio you come to find that I am a strong minded, caring, and hardworking leader.

Lets connect

Please use the social media icons to find my social media platforms and email. Dont be shy! Reach out with any inquiries or comments.