Skip to content

Commit bbf925a

Browse files
Varun PanugantiVarun Panuganti
authored andcommitted
Removed extra project tags
1 parent 23f1edd commit bbf925a

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/app/page.tsx

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,7 @@ const PROJECTS: Project[] = [
345345
"Built a 13-process volleyball simulation with a referee and twelve players that pass a “ball” by point-to-point messages. I encoded serve and rally probabilities with a three-hit cap, used a GSL RNG for uniform selection, and defined compact message payloads and event reports. The referee implemented scoring and set logic (to 25, win-by-2; best-of-five), logged actions, and terminated players cleanly with a portable mpic++ Makefile.",
346346
skills: ["C/C++", "MPI", "Make"],
347347
},
348+
348349
//Stat 311 Statistical Computing in R
349350
{
350351
id: "rstat-statslab2-nycflights",
@@ -362,7 +363,7 @@ const PROJECTS: Project[] = [
362363
title: "Random Simulations — Coins & Dice (R Lab 3)",
363364
year: 2025,
364365
topics: ["Statistical Computing", "R"],
365-
tags: ["R", "Simulation", "Random Sampling", "Probability", "Base R"],
366+
tags: ["R", "Base R", "Probability and Statistics"],
366367
github: "https://github.com/VarunP3000/RStatisticalComputing/blob/main/RStatisticalComputing/StatsLab3.pdf",
367368
description:
368369
"Simulated coin tosses and dice rolls in R to study sampling with and without replacement. Computed empirical proportions, sample variance, and standard deviation manually and via built-in R functions to validate formulas. Increased simulation size from 60 to 1000 rolls to observe convergence toward theoretical variance and reduced variability.",
@@ -373,7 +374,7 @@ const PROJECTS: Project[] = [
373374
title: "Hot Hand & Fast-Food Normality (R Lab 4)",
374375
year: 2025,
375376
topics: ["Statistical Computing", "R"],
376-
tags: ["R", "tidyverse", "ggplot2", "Probability", "Simulation", "EDA", "QQ Plot"],
377+
tags: ["R", "tidyverse", "ggplot2", "Probability and Statistics"],
377378
github: "https://github.com/VarunP3000/RStatisticalComputing/blob/main/RStatisticalComputing/StatsLab4.pdf",
378379
description:
379380
"Analyzed Kobe Bryant’s 2009 Finals shot streaks with calc_streak and compared against an independent-shooter simulation (p=0.45), finding higher variance and mean streak length in the simulation and no ‘hot hand’. Then explored fast-food nutrition: histograms of calories from fat for McDonald’s vs. Dairy Queen, overlaid a normal curve using sample mean/SD, and used QQ plots/qqnormsim to assess normality.",
@@ -384,7 +385,7 @@ const PROJECTS: Project[] = [
384385
title: "Sampling Distributions & Population Proportions (R Lab 5)",
385386
year: 2025,
386387
topics: ["Statistical Computing", "R"],
387-
tags: ["R", "infer", "tidyverse", "Simulation", "Sampling", "Central Limit Theorem"],
388+
tags: ["R", "infer", "tidyverse", "Probability and Statistics"],
388389
github: "https://github.com/VarunP3000/RStatisticalComputing/blob/main/RStatisticalComputing/StatsLab5.pdf",
389390
description:
390391
"Simulated repeated random samples to study the sampling distribution of proportions using the infer and tidyverse packages. Estimated p-hat for beliefs about scientists’ work benefiting society and visualized 15,000 samples with histograms. Compared sampling distributions at n = 10, 50, and 100, showing that as sample size increases, the shape becomes more normal, the mean approaches the true population proportion (0.2), and the standard error decreases.",
@@ -395,7 +396,7 @@ const PROJECTS: Project[] = [
395396
title: "Texting & Driving — Hypothesis Testing and Confidence Intervals (R Lab 6)",
396397
year: 2025,
397398
topics: ["Statistical Computing", "R"],
398-
tags: ["R", "infer", "Hypothesis Testing", "Confidence Intervals", "Proportions", "tidyverse"],
399+
tags: ["R", "infer", "tidyverse", "Probability and Statistics"],
399400
github: "https://github.com/VarunP3000/RStatisticalComputing/blob/main/RStatisticalComputing/StatsLab6.pdf",
400401
description:
401402
"Analyzed Youth Risk Behavior Survey (YRBSS) data to estimate the proportion of high schoolers who text while driving. Computed 99% and 95% confidence intervals for the true proportion using the infer package and visualized the margin of error as a function of population proportion. Conducted hypothesis tests (H₀: p=0.05) and found a p-value ≈ 0.00014, providing strong evidence that more than 5% of high schoolers text while driving.",
@@ -406,7 +407,7 @@ const PROJECTS: Project[] = [
406407
title: "Weight vs Physical Activity — Two-Sample Inference (R Lab 7)",
407408
year: 2025,
408409
topics: ["Statistical Computing", "R"],
409-
tags: ["R", "infer", "Hypothesis Testing", "t-test", "Data Visualization", "tidyverse"],
410+
tags: ["R", "infer", "tidyverse", "Probability and Statistics"],
410411
github: "https://github.com/VarunP3000/RStatisticalComputing/blob/main/RStatisticalComputing/StatsLab7.pdf",
411412
description:
412413
"Used the Youth Risk Behavior Survey (YRBSS) to test whether physically active high schoolers (≥3 days/week) weigh more than inactive peers. Created boxplots comparing groups, verified inference conditions, and ran two-sample t-tests using infer. Obtained a p-value ≈ 0.0002 for a two-sided test and 0.0001 for a one-sided alternative, leading to rejection of the null hypothesis at the 5% significance level.",
@@ -417,12 +418,12 @@ const PROJECTS: Project[] = [
417418
title: "Linear Regression — Personal Freedom vs Expression Control (R Lab 8)",
418419
year: 2025,
419420
topics: ["Statistical Computing", "R"],
420-
tags: ["R", "Linear Regression", "tidyverse", "ggplot2", "Model Diagnostics"],
421+
tags: ["R", "tidyverse", "ggplot2", "Probability and Statistics"],
421422
github: "https://github.com/VarunP3000/RStatisticalComputing/blob/main/RStatisticalComputing/StatsLab8.pdf",
422423
description:
423424
"Performed simple linear regression on the Human Freedom Index dataset to model personal freedom (pf_score) as a function of expression control (pf_expression_control). Found a strong positive slope (0.54) and intercept (4.28), indicating higher freedom scores with greater expression control. Verified regression assumptions—linearity, normal residuals, and constant variance—through fitted vs. residual plots and histograms, confirming model validity.",
424425
skills: ["R", "tidyverse", "ggplot2", "Regression Analysis"]
425-
},
426+
},
426427
];
427428

428429
function classNames(...xs: Array<string | false | null | undefined>): string {

0 commit comments

Comments
 (0)