Statistics with Python
  • Sequential
    • 01 - Introduction
    • 02 - Preparation
    • 03 - Statistical Basics
    • 04 - Work Process
    • 05 - Comparing the Means
  • Unsequential
    • BetaPERT Distribution
Powered by GitBook
On this page
  1. Sequential

02 - Preparation

Preparation of computer for statistical work

We'll assume that you're using a *nix operating system, and have Python installed.

Create and activate virtualenv, and get fxy package:

$ python3 -m venv .venv && . .venv/bin/activate

$ pip install fxy

Type fx -s or isympy command to get started:

$ fx -s

In [1]: █

Note:

  • fx starts IPython environment with mpmath pre-imported,

  • parameter -s additionally imports sympy with isympy importer.)

Previous01 - IntroductionNext03 - Statistical Basics

Last updated 2 years ago