TI-BASIC Wiki
Advertisement
(84) :1-Var Stats listname[,frequencylist]

When this is used outside a program, it computes several Statistics Variables and displays them in a navigable list.

When this is used inside a program, it simply populates those Statistics Variables so they can be used.

The statistics variables it provides are:

  • ∑x
  • ∑x²
  • Sx
  • σx
  • n
  • minX
  • Q1
  • Med
  • Q3
  • maxX

Location[]

  • STAT
  • CALC
  • 1:1-Var Stats

Example[]

:{1,2,3}→L1
:1-Var Stats L1

This will display the screen showing the results.

Advertisement