Unlocking Data: Your Step-by-Step Guide to Using the TI-84 for Statistics The TI-84 graphing calculator is a powerhouse for statistics, capable of handling everything from calculating a simple average to running complex hypothesis tests. If you’re taking a statistics class, learning to wield this tool effectively can save you hours of manual calculation and help you visualize data in powerful ways.
This guide will walk you through the entire process, from entering your data to interpreting the results, using a clear example.
Table of Contents
The Example Dataset
Let’s use a simple dataset throughout this guide. Imagine we recorded the test scores for 10 students:
85, 92, 78, 90, 88, 95, 83, 80, 87, 91
Our goals:
- Enter this data.
- Calculate descriptive statistics (mean, median, standard deviation, etc.).
- Create a box plot and a histogram to visualize the data.
- Perform a linear regression (if we had a second variable).
Entering Your Data into Lists
All statistical work on the TI-84 begins with entering your data into lists.
- Press theÂ
STAT
 button. You’ll see a menu like EDIT, CALC, TESTS. - SelectÂ
1:Edit...
 by pressingÂENTER
. This will open your list screen, typically labeled L1, L2, L3, etc. - Enter your data. If L1 has existing data, arrow up to highlightÂ
L1
, pressÂCLEAR
, then arrow down to start entering numbers.- Type the first number (
85
) and pressÂENTER
. - Type the next number (
92
), pressÂENTER
. - Continue until all 10 scores are entered into L1.
- Type the first number (
- (Optional) Naming a List:Â To keep things organized, you can name your list “SCORES”.
- Arrow over to the top of the column where it saysÂ
L1
. - PressÂ
CLEAR
 to delete theÂL1
. - TypeÂ
S
,ÂC
,ÂO
,ÂR
,ÂE
,ÂS
 (use theÂALPHA
 key or the green letter keys above each button). - PressÂ
ENTER
.
- Arrow over to the top of the column where it saysÂ
Your data is now loaded and ready for analysis.
Calculating Descriptive Statistics
You don’t need to memorize formulas; the calculator can compute all the basic summary statistics at once.
- PressÂ
STAT
 again. - Arrow over to the CALC menu.
- SelectÂ
1:1-Var Stats
 (1-Variable Statistics). This is for analyzing a single dataset. - Now, you need to tell the calculator which list your data is in.
- If you used the default L1, simply pressÂ
ENTER
. - If you used a different list, pressÂ
2ND
 and then the number of the list (e.g.,Â2ND
Â2
 for L2). Or, you can pressÂ2ND
Â1
 to get theÂL1
 token.
- If you used the default L1, simply pressÂ
- The screen will sayÂ
1-Var Stats L1
. PressÂENTER
 again.
A screen full of numbers will appear! Here’s what they all mean:
x̄
 (x-bar): The mean of your data. (For our data, it should be ~86.9).Σx
: The sum of all the data points.Σx²
:Â The sum of all the data points squared.Sx
: The sample standard deviation (use this if your data is from a sample). This measures spread.σx
: The population standard deviation (use this if your data is from an entire population).n
:Â The number of data points.minX
:Â The smallest value in the dataset.Q1
:Â The first quartile (the median of the lower half).Med
: The median.Q3
:Â The third quartile (the median of the upper half).maxX
:Â The largest value in the dataset.
To see all these values, use the up and down arrow keys to scroll through the list.
Creating Visualizations (Plots)
Seeing your data is just as important as calculating numbers. Let’s make two common graphs.
Creating a Box Plot (Box-and-Whisker Plot)
- PressÂ
2ND
ÂY=
 (which is theÂSTAT PLOT
 button). - SelectÂ
1:Plot1...
 and pressÂENTER
. - Turn the plotÂ
On
. - Arrow down toÂ
Type:
 and select the box plot icon (the middle one in the second row). - EnsureÂ
Xlist:
 is set toÂL1
 (or wherever your data is).ÂFreq:
 should beÂ1
. - Now, pressÂ
ZOOM
 and selectÂ9:ZoomStat
. This automatically sets the window to perfectly fit your data.
You will now see a box plot representing the five-number summary (min, Q1, Med, Q3, max) of your test scores.
Creating a Histogram
- Go back toÂ
2ND
ÂY=
 >ÂSTAT PLOT
. - SelectÂ
2:Plot2...
, turn itÂOn
. - Change theÂ
Type:
 to the histogram icon (the third one in the first row). - EnsureÂ
Xlist:
 isÂL1
 andÂFreq:
 isÂ1
. - PressÂ
ZOOM
Â9:ZoomStat
 again.
The calculator will automatically create bins (ranges) for your data. You can adjust the bin width and starting point by pressing the WINDOW
button after you see the graph.
To turn off a plot, go back to STAT PLOT
 and set it to Off
.
Performing Linear Regression (With Two Variables)
What if you had a second variable? For example, hours studied vs. test score.
- L1:Â Hours Studied:Â
2, 5, 1, 4, 3, 6, 2, 3, 4, 5
- L2:Â Test Score:Â
85, 92, 78, 90, 88, 95, 83, 80, 87, 91
- Enter the “Hours Studied” data into L1 and the “Test Score” data into L2. Make sure the data pairs line up!
- PressÂ
STAT
, arrow over toÂCALC
. - SelectÂ
4:LinReg(ax+b)
. This finds the line of best fit. - You need to tell it where your data is. The format isÂ
LinReg(ax+b) Xlist, Ylist
- To do this easily, pressÂ
2ND
Â1
 (for L1), thenÂ,
 (the comma button), thenÂ2ND
Â2
 (for L2).
- To do this easily, pressÂ
- The command should look like:Â
LinReg(ax+b) L1,L2
- PressÂ
ENTER
.
The calculator will display the values for:
a
: The slope of the regression line.b
: The y-intercept.r²
 andÂr
: The coefficients of determination and correlation, which tell you the strength and direction of the relationship.
You can now write the equation of the line: y = ax + b
To graph the scatter plot and regression line together:
- Set up aÂ
STAT PLOT
 for a scatter plot (the first icon) using L1 and L2. - PressÂ
Y=
. Arrow up to a blank function and pressÂVARS
, thenÂ5:Statistics...
, arrow over toÂEQ
, and selectÂ1:RegEQ
. This will paste the regression equation you just calculated directly into Y1. - PressÂ
ZOOM
Â9:ZoomStat
. You will see your scatter plot with the line of best fit drawn through it.
Pro Tips and Final Advice
- Clearing Data:Â Always clear lists (
STAT
 >ÂEdit...
 > arrow up to list name >ÂCLEAR
 >ÂENTER
) before entering new data to avoid mixing datasets. - Double-Check Entries:Â A single data entry error can throw off all your calculations. Always review your lists.
- Understand the Context: The calculator gives you numbers, but you must interpret them. Knowing thatÂ
Sx
 is your sample standard deviation and what it means is your job. - Practice: The more you use these functions, the more intuitive they become. Use this guide to walk through the steps with your own homework problems.
The TI-84 is an incredible partner for statistics. By mastering these fundamental steps, you transform it from a simple calculator into a powerful data analysis engine, ready to tackle any problem your course throws at it.
Frequently Asked Questions (FAQs)
Q1: How do I clear data from a list or reset my calculator’s statistics functions?
- A:Â To clear a single list, go toÂ
STAT
 >Â1:Edit...
, use the arrow keys to highlight the list name (e.g.,ÂL1
), pressÂCLEAR
, and then pressÂENTER
. Do not pressÂDEL
, as that will delete the entire list column. To perform a more complete reset, pressÂ2ND
Â+
 (MEM) and selectÂ7:Reset...
. Then chooseÂ1:All Ram...
 andÂ2:Reset
. Warning: This will erase all data and stored values, not just in stats lists.
Q2: What’s the difference between Sx
and σx
in the 1-Var Stats results? Which one should I use?
- A:Â This is a crucial distinction:
Sx
 is the sample standard deviation. Use this when your data represents a sample taken from a larger population. This is the most common choice in introductory statistics courses.σx
 is the population standard deviation. Use this only if your dataset includes every single member of the population you are studying.- When in doubt, useÂ
Sx
.
Q3: I entered my data correctly, but when I try to create a plot, the graph is blank or looks wrong. What happened?
- A:Â This is almost always one of two issues:
- The Plot is not turned on:Â Go toÂ
2ND
ÂY=
 (STAT PLOT) and ensure the plot you are using (Plot1, Plot2, etc.) is set toÂOn
. - The Window needs adjusting:Â After turning on the plot, always pressÂ
ZOOM
 and selectÂ9:ZoomStat
. This command automatically sets the X and Y ranges to perfectly fit your specific data. If you manually set the window (WINDOW
 button), your data might be outside the viewing area.
- The Plot is not turned on:Â Go toÂ
Q4: How do I calculate standard deviation or mean by itself without getting all the 1-Var Stats?
- A:Â You can access these values directly after runningÂ
1-Var Stats
.- PressÂ
VARS
 to access the variables menu. - SelectÂ
5:Statistics...
- Navigate to theÂ
XY
 submenu. Here you will find all the calculated values (likeÂXÌ„
 for mean,ÂSx
 for sample standard deviation,Âσx
 for population standard deviation,Ân
, etc.). You can use these in other calculations.
- PressÂ
Q5: Can I perform a linear regression if my data is not in L1 and L2?
- A:Â Absolutely. When you chooseÂ
4:LinReg(ax+b)
, you can specify any two lists. The full syntax isÂLinReg(ax+b) [Xlist], [Ylist]
. For example, if your x-data is in L3 and your y-data is in L4, you would enter:ÂLinReg(ax+b) L3,L4
.
Q6: What do the r
and r²
values mean in linear regression?
- A:Â These values measure the strength and direction of the linear relationship.
r
 (correlation coefficient): A value between -1 and 1.r = 1
: Perfect positive linear relationship.r = -1
: Perfect negative linear relationship.r = 0
: No linear relationship.
r²
 (coefficient of determination): A value between 0 and 1. It tells you what percentage of the change in the y-variable can be explained by the change in the x-variable. AnÂr²
 of 0.85 means 85% of the variation in y is explained by x.
Q7: How do I add a regression line to my scatter plot?
- A:Â There are two main ways:
- Automatic Paste:Â After calculating the regression (
LinReg(ax+b)
), pressÂY=
, arrow up to a blank function (e.g.,ÂY1
), pressÂVARS
, selectÂ5:Statistics
 >ÂEQ
 >Â1:RegEQ
. This will paste the full equation. - Manual Entry:Â Simply type the equation manually into theÂ
Y=
 screen using theÂa
 andÂb
 values provided by the LinReg output. The format will beÂY1 = a*X + b
.
- Automatic Paste:Â After calculating the regression (
Q8: My histogram looks chunky or has weird bars. How can I change the bin width?
- A:Â The calculator automatically chooses bin widths based on your data. To change them:
- PressÂ
WINDOW
 after you have graphed the histogram. - You will seeÂ
Xmin
,ÂXmax
, andÂXscl
. Xscl
 controls the bin width. Adjust this number to make the bars wider (larger number) or narrower (smaller number).- PressÂ
GRAPH
 again to see the updated histogram. You may need to adjustÂXmin
 andÂXmax
 accordingly.
- PressÂ