Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reset stack folder #157

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ group :jekyll_plugins do
gem "jekyll"
gem "jekyll-watch"
gem "jekyll-paginate"
gem "jekyll-sass-converter", "~> 2.0"
gem "kramdown"
gem "kramdown-parser-gfm"
gem "rouge"
Expand Down
8 changes: 4 additions & 4 deletions _data/authors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -670,9 +670,9 @@ haryn_shin:
name: Haryn Shin
title: Stack Developer
bio: Haryn is a second-year cognitive science student with a specialization in computing and a minor in digital humanities. She likes to go eat Korean food and hang out with friends in her free time.
mug: no
current: yes
mug: yes
email: [email protected]
current: yes
jake_kovinsky:
name: Jake Kovinsky
title: Stack Developer
Expand All @@ -683,7 +683,7 @@ jake_kovinsky:
leo_cardozo:
name: Leo Cardozo
title: Stack Developer
bio:
bio: Leo is a first-year statistics student. He enjoys playing tennis, cheering on UCLA sports, and going on hikes.
mug: yes
email: [email protected]
github: cardo14
Expand All @@ -695,4 +695,4 @@ robin_lee:
mug: no
email: [email protected]
github: robin-leee
current: yes
current: yes
236 changes: 236 additions & 0 deletions _posts/2022-11-30-campus-living.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,236 @@
---
title: "On-campus vs. off-campus living: Which living location matches your preferences?"
teaser: Analysis of the differences between on-campus and off-campus living at UCLA.
authors:
- leo_cardozo
- angela_kan
- haryn_shin
key_takeaways:
- The percentage of students living on campus has increased by 13% since 2012.
- 48% of all students, 56% of new transfers and 98% of first years live on campus at UCLA as of the 2020-2021 school year.
- Living in an off-campus apartment double is, on average, cheaper than living on campus by about $5,000, when factoring in food, transportation and utilities.


featured_image:
url: campus-living/featured_image.jpg
caption: (Nikole Liang / Daily Bruin)
og_image: campus-living/featured_image.jpg
scripts:
- //cdnjs.cloudflare.com/ajax/libs/Chart.js/3.9.1/chart.min.js
- /js/posts/campus-living-2022/match-quiz-new.js
- /js/posts/campus-living-2022/on_campus_off_campus.js
- /js/posts/campus-living-2022/stacked-chart.js
stylesheets:
- /css/posts/campus-living-2022/app.css
- //fonts.googleapis.com/css?family=Lato&display=swap
---

### Introduction:
In March, UCLA became the first University of California campus to offer four years of guaranteed housing for the classes of 2026 and onward and two years of housing for transfer students starting fall 2022. This year, UCLA has opened multiple new apartments to accommodate more students. Students have a variety of housing options to choose from based on their living preferences, but choosing whether to live on-campus and off-campus can be difficult. Using official UCLA and government data to analyze different factors such as the overall demographics of on-campus and off-campus students as well as the various living costs associated with each type of housing, we lay out the differences between living on campus and off campus that students may want to consider when selecting their next home at UCLA.

### Match quiz
Here is a short quiz for you to see whether you match better with living on campus or off campus.


<div id="wrapper_quiz">
<h1>On-campus vs. off-campus living: Which is for you?</h1>
<p>Take this quiz to find out your best match!</p>
<form id = "quiz">
<p class = "question">Q1. Do you like to cook?</p>
<label>
<input type="radio" name="q1" value="offcamp" required>
Yes, I like cooking.
</label>
<br />
<label>
<input type="radio" name="q1" value="oncamp" required>
No, I don’t like cooking.
</label>
<br />
<p class = "question">Q2. Do you have a car?</p>
<label>
<input type="radio" name="q2" value="offcamp" required>
Yes, I have a car.
</label>
<br />
<label>
<input type="radio" name="q2" value="oncamp" required>
No, I don't have a car.
</label>
<br />
<p class = "question">Q3. What year are you?</p>
<label>
<input type="radio" name="q3" value="oncamp" required>
First-year
</label>
<br />
<label>
<input type="radio" name="q3" value="oncamp" required>
Second-year
</label>
<br />
<label>
<input type="radio" name="q3" value="offcamp" required>
Third-year
</label>
<br />
<label>
<input type="radio" name="q3" value="offcamp" required>
Fourth-plus year
</label>
<br />
<p class = "question">Q4. Do you mind communal bathrooms?</p>
<label>
<input type="radio" name="q4" value="oncamp" required>
No, I don't mind.
</label>
<br />
<label>
<input type="radio" name="q4" value="offcamp" required>
Yes, I don't want communal bathrooms.
</label>
<br />
<p class = "question">Q5. Do you like having separate spaces for school and personal life?</p>
<label>
<input type="radio" name="q5" value="oncamp" required>
No, I don’t really mind.
</label>
<br />
<label>
<input type="radio" name="q5" value="offcamp" required>
Yes, I want them to be separate.
</label>
<br />
<p class = "question">Q6. Do you need a living space during summer/winter breaks?</p>
<label>
<input type="radio" name="q6" value="oncamp" required>
No
</label>
<br />
<label>
<input type="radio" name="q6" value="offcamp" required>
Yes
</label>
<br />
<p class = "question">Q7. How important of a factor is proximity from campus to you?</p>
<label>
<input type="radio" name="q7" value="oncamp" required>
Very important, I want to be as close as possible.
</label>
<br />
<label>
<input type="radio" name="q7" value="offcamp" required>
Not that important, I’d rather prioritize other things.
</label>
<br />
</form>
<div>
<button class = "quiz_submit" type="button" id="submit" onclick="matchQuiz()">Click Me For Results!</button>
</div>
<div id="answer">Your result will show up here!</div>
<div>
<canvas class = "no_results" id="matchChart" ></canvas>
</div>
</div>

### Breakdown of estimated yearly living costs
<div>
<canvas id="stacked-chart"></canvas>
</div>

#### Housing
The chart above shows the overall breakdown of estimated individual living costs for each category – on-campus, off-campus (university apartments) and off-campus (non-university apartments). To uniformize price comparisons across categories, we looked at rates for a double, a room shared by two people. On average, estimated rent costs are the highest for on-campus dorms, followed by university apartments and then off-campus Westwood apartments. Note that these rates depend on the number of roommates students choose to have and vary more significantly based on this factor for off-campus Westwood apartments than for university-owned housing.

#### Food
Food costs differ based on whether a student is living on or off campus. UCLA currently does not provide meal plans for off-campus students, so only students living on campus are eligible for a meal plan. We used data about the average cost of groceries in Westwood in order to calculate the food costs for off-campus students. Food costs for on-campus students were derived from the meal plan costs at UCLA – we used the cost of a 14P plan. On average, the cost of food for students living on campus is more expensive than the cost of food for students living off campus, by a factor of almost two.

Joseph Malham, a third-year physics student living in Gayley Heights – a university-owned apartment – noted this difference, commenting on how expensive meal plans are:

“It’s nice to not have to pay for a meal plan,” Malham said. “I probably spend like $200 a month on groceries or so.”

Malham, who lived in the University Cooperative Housing Association in his freshman year, said that he paid $650 a month for room and board there in exchange for working one weekly four-hour work shift doing chores. The UCHA serves as a cheaper option to more traditional housing options and offers a greater sense of community, Malham said.

Food costs can also vary for students depending on how often they eat out and how many groceries they buy.

Justin Seok, a fourth-year psychobiology student who lives in a non-university apartment, said, “It’s (food is) not something that is just already calculated in like a meal plan and it can vary a lot depending on how often you go out and how often you get your food delivered.”

#### Transportation
On average, transportation costs for off-campus students are shown to be more costly compared to those of on-campus students by about $445, when factoring in the increased distance of off-campus housing from campus. Based on their location, students who live off-campus may decide to utilize public transit or bring their cars to get to their classes, which could lead to greater spending on transportation.

“The walk to campus definitely got longer for me,” Seok said.

Utilizing free transportation services such as the BruinBus may be a way to reduce transportation costs, especially for off-campus students.

#### Utilities
Another cost consideration for off-campus students living in non-university apartments to take into account is utilities. These costs typically include electricity, gas, internet, water and trash bills. While utilities for dorms and university apartments are included in overall room and board fees, non-university apartment students may need to pay the costs of some or all of their utilities separately. Though the costs may differ slightly depending on the specific apartment, on average, full utility costs are about $107 a month per apartment.

#### Other
While on-campus housing fees are all-inclusive, there may be unexpected miscellaneous costs for off-campus apartments in addition to the utilities, such as furniture repairs and everyday supplies such as kitchen utensils or toiletries. While on-campus dorms usually provide students with toilet paper and cleaning supplies, off-campus students may be expected to spend additional money on such items. While we did not factor this into our cost of living calculations as these costs can be highly variable, this is another important consideration for students choosing where to live.

Seok said that students in non-university apartments may have to additionally spend on furniture, which could be an upfront cost that students may have not necessarily calculated.

### Nonfinancial factors
There are other factors that can affect students’ choice of living besides costs. This includes students’ living styles and preferences, distance from campus, social life and more.

Apartments are typically more spacious, as they are usually accompanied by a kitchen, common living area and individual rooms, whereas dorms are single rooms that are supplied with only essential furniture such as beds, dressers and desks.

“I like that there’s a lot more space for people. There’s some degree of privacy because there’s multiple rooms, and you’re not all in one room at the same time as each other,” Malham said.

Some students may prefer living in apartments because of the personal feel.

“I really like my kitchen space. It feels more like a home than like a dorm.” Seok said. “You are able to make your space your own.”

Off-campus apartments may also offer a way for students to separate school and personal life.

“It’s really nice to be able to, in my opinion, go away from campus, have your own personal space, be able to have a kitchen, do your own thing – all that stuff,” Malham said.

The convenience of meal plans, on the other hand, could be a reason why some students may prefer to live on campus.

Seok added that it was easier to grab food when he lived in the dorms, as he could just walk down to one of the dining halls instead of spending time cooking.

Additionally, the social scene that comes with living on the Hill can be a great way to meet new people.

“I like the social aspect of it, and seeing and talking to people every day and hanging out in the lounge is really fun and relaxing. It’s a good way to destress from all your schoolwork,” said Camryn Deisman, a first-year music education student who lives in Rieber Hall.

However, while the Hill might be more social, it also comes with more restrictions.

“With dorms, you’re still confined to a set of rules. When you are in an apartment, it’s a little different,” Deisman said.
### Overall demographics of on-campus and off-campus students

Aside from these miscellaneous considerations, another important factor that might impact where students choose to live is what their peers are doing and how many of them are doing it. The chart below shows the percentage of students living on campus each year from fall 2006 to fall 2020.


<div class = "selectBox" >
<select id = "studentType">
<option value="40, 40, 40, 39, 36, 48, 35, 39, 43, 45, 47, 48, 48, 48, 48"
label = "All Students"
selected>% of All Students On Campus</option>
<option value="39, 39, 38, 34, 34, 34, 34, 39, 47, 51, 53, 51, 54, 56, 56"
label = "Transfers"
>% of New Transfers On Campus</option>
<option value="94, 94, 94, 93, 94, 94, 94, 95, 96, 98, 97, 98, 98, 98, 98"
label = "First-Years"
>% of First-Years On Campus</option>
</select>
</div>
<div class = "chartBox" >
<canvas id="campusData" width="400" height="320"></canvas>
</div>

The percentage of the student body living on campus has steadily risen since 2012, concurrent with the construction and completion of several university housing projects over the years.

The tendency of upperclassmen to live off campus can play a role in the decision to live off campus. Robi Chatterjee, a fourth-year data theory student, said the social scene was one of the key reasons he enjoys living in an off-campus apartment.

“As a fourth-year, that’s kinda where most of the other fourth-years are, so it’s just nice to be around people my age,” Chatterjee said.

### Looking forward
With so many different options out there, the decision of where to live can be an overwhelming one. There are many different housing options in Westwood that cater to a wider range of preferences and budgets. By offering a full housing guarantee for all its undergraduates, a first among UC schools, UCLA has made university housing an option for all students to consider.

### About the data
The overall demographics chart was created using data from UCLA’s common data set and undergraduate profile. The estimated yearly living costs chart was created using the data found on the UCLA tuition and fees website by averaging the rates for a double for each type of dorm and university apartment, as well as using data regarding average one-bedroom apartment rent rates in Westwood taken from the U.S. Department of Housing and Urban Development. Data regarding the cost of food was taken from the U.S. Department of Agriculture, with yearly estimates calculated based on a nutritionally adequate diet of food purchased at a grocery store for at-home preparation and adjusted for a nine-month academic year.






45 changes: 45 additions & 0 deletions css/posts/campus-living-2022/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#wrapper_quiz{
width: 80%;
padding: 10px 15px;
margin: auto;
border: black 2px solid
}

.question{
font-weight: 800;
}

.quiz_submit {
font-family: 'PT Sans';
font-size: 18px;
padding: 10px;
margin: 20px 0;
border-radius: 10px;
}
#submit {
background:#94D8FB;
}
#answer {
font-size: 25px;
border: 1px dashed #ccc;
background: #eee;
padding: 10px;
}
.no_results{
display: none !important;
border: 2px black solid
}
.results{
display: block;
}
#stacked-chart{
height: 400px;
}
@media (max-width: 600px){
#stacked-chart{
height: 600px;
}
#wrapper_quiz{
width: 95%;
}
}
Binary file added img/mugs/haryn_shin.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/posts/campus-living/featured_image.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions jekyll-include-cache/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ group :jekyll_plugins do
gem "jekyll-include-cache"
gem "jekyll-watch"
gem "jekyll-paginate"
gem "jekyll-sass-converter", "~> 2.0"
gem "kramdown"
gem "rouge"
gem "tzinfo"
Expand Down
Loading