Quick histogram python: Revision history

From Federal Burro of Information
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

19 December 2024

  • curprev 18:0118:01, 19 December 2024David talk contribs 195 bytes +195 Created page with "category:script <pre> #!/usr/bin/env python3 #-*- coding: utf-8 -*- import numpy as np import matplotlib.pyplot as plt myarr = np.loadtxt("numbers.txt") plt.hist(myarr) plt.show() </pre>"