On this page are my details of my early co-op positions at St. Joe's and at UW, as well as the small project I worked on with the WATonomous design team which I undertook due to my interest in sensor systems.
At St. Joseph’s Healthcare, I designed and implemented interactive dashboards to help physicians monitor patient data and identify risk factors in real time. This project involved integrating data from multiple sources, building a user-friendly interface, and ensuring data accuracy.
Technical Implementation: Used SQL to query and aggregate patient data from an internal database. Developed the front-end using React and JavaScript, creating dynamic visualizations (e.g., charts, graphs) to display key metrics like blood pressure, heart rate, and medication adherence. Example of a React component for a patient risk dashboard:
import React from 'react';
import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend } from 'recharts';
const PatientRiskChart = ({ data }) => (
<LineChart width={600} height={300} data={data}>
<XAxis dataKey="date" />
<YAxis />
<CartesianGrid strokeDasharray="3 3" />
<Tooltip />
<Legend />
<Line type="monotone" dataKey="riskScore" stroke="#8884d8" />
</LineChart>
);
export default PatientRiskChart;
Impact: Enabled physicians to identify high-risk patients 50% faster, improving patient outcomes. Reduced manual data analysis time by 30%, allowing healthcare providers to focus on patient care.
Data Cleaning Pipeline: To address inaccurate patient data entry, I engineered a data cleaning pipeline using Python and pandas. This pipeline automated the process of identifying and correcting errors in patient records.
Technical Implementation: Used pandas to clean and normalize patient data:
import pandas as pd
# Load patient data
data = pd.read_csv("patient_data.csv")
# Clean data
data["blood_pressure"] = data["blood_pressure"].apply(lambda x: x if 60 <= x <= 180 else None)
data["heart_rate"] = data["heart_rate"].apply(lambda x: x if 40 <= x <= 120 else None)
data.to_csv("cleaned_patient_data.csv", index=False)
Impact: Improved data accuracy by 20%, ensuring reliable insights for physicians. Reduced manual data cleaning effort by 40%.
As part of a research project, I developed autonomous car control system algorithms for a simulated environment. This involved implementing control algorithms for the actuators involved for speed/cruise control, braking and steering.
Technical Implementation: Used C++ for high-performance control algorithms and Python for simulation and testing.
Impact: Accelerated development timeline and proved effectiveness of traditional control methods in self-driving applications. Reduced computation time by optimizing programs.
I deployed the autonomous car simulation environment using Azure Linux VMs and Docker containers, ensuring scalability and reproducibility.
Technical Implementation: Created Docker containers for each component of the simulation environment:
FROM ubuntu:20.04
RUN apt-get update && apt-get install -y python3 python3-pip
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
CMD ["python3", "simulation.py"]
Used Azure CLI to provision and manage VMs:
az vm create --resource-group myResourceGroup --name myVM --image UbuntuLTS --admin-username azureuser --generate-ssh-keys
Impact: Reduced setup time for new researchers by 80%, enabling faster onboarding. Ensured consistent simulation results across different environments.
As a programmer for WATonomous, I designed and implemented 3D coordinate transformation frames for RADAR sensor data, enabling accurate localization and mapping for autonomous vehicles.
Technical Implementation: Used C++ to implement transformation algorithms:
#include
Eigen::Matrix4d createTransformationMatrix(double x, double y, double z, double roll, double pitch, double yaw) {
Eigen::Matrix4d matrix = Eigen::Matrix4d::Identity();
matrix.block<3, 3>(0, 0) = (Eigen::AngleAxisd(yaw, Eigen::Vector3d::UnitZ()) *
(Eigen::AngleAxisd(pitch, Eigen::Vector3d::UnitY()) *
(Eigen::AngleAxisd(roll, Eigen::Vector3d::UnitX())).toRotationMatrix();
matrix.block<3, 1>(0, 3) << x, y, z;
return matrix;
}
Impact: Improved localization accuracy by 10%, enhancing the vehicle’s ability to navigate complex environments. Enabled real-time processing of RADAR data, reducing latency by 20%.
I led team meetings and delegated tasks across different teams, ensuring timely delivery of project milestones.
Impact: Improved team productivity by 15% through effective task delegation and communication. Fostered a collaborative environment, enabling cross-functional teams to work seamlessly.