Hello!!

Hello!!

I am Snehal Agrawal, a student in the University of Cincinnati - College of Business, pursuing Masters in Information Systems with Data Analytics Certificate. I like to paint the canvases with pretty colors in my free time.

Education

Professional Experience

Immediately after completing my Bachelors, I joined IMS Health (IQVIA) and worked for 3 years before moving to US to pursue my Masters. I do have two internship experience which I did during my Bachelors. I have a wide variety of experience from Graphics designing to Web development than to Databases and Programming languages.

Technical Skills, Certificates, and Badges

Programming Languages: SAS/R, ASP.net using C#, C/C++, SQL, JavaScript, Python
Database: MS SQL Server, Oracle
Web Technologies: HTML, CSS, Bootstrap, JSON, XML
Others: Tableau, Microsoft Visio, MS Excel, Visual Studio, GitHub, Problem Solving, Algorithms, Data Analytics
Badges: Gold Badge in Problem Solving and Python, Silver Badge in SQL and C++ in Hackerrank
Certificates: Intro to SQL for Data Science and Joining Data in SQL in Datacamp

Experience in R and Other Analytics Software

I have a 3 years of work experience in SQL in IMS Health (IQVIA). I have learnt and worked on R in my Masters and made quite a few projects now in R. I use R for Data Cleaning, EDA, data visualization, data mining,and modeling.

I have academic experience in below analytic softwares/languages:
1. R
2. SAS
3. Tableau
4. MS Excel

Experimenting with data

Suppose given a vector of integers, v = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, we can calculate the mean of the data using the below formula:

\[\bar{x} = \frac{\sum x}{n}\] This yields the mean of v = 5.5

Defining vector in R and showing the mean

v <- c(1,2,3,4,5,6,7,8,9,10)
v
##  [1]  1  2  3  4  5  6  7  8  9 10
mean(v)
## [1] 5.5

A work by Snehal Agrawal