コード例 #1
0
ファイル: test_plot.py プロジェクト: ejhigson/fgivenx
def test_plot_lines():
    nx = 100
    nsamps = 150
    x = numpy.linspace(0, 1, nx)
    m = numpy.random.normal(nsamps)
    c = numpy.random.normal(nsamps)
    fsamps = numpy.outer(x, m) + c
    fig, ax = plt.subplots()
    plot_lines(x, fsamps, ax)

    plot_lines(x, fsamps)
    plot_lines(x, fsamps, downsample=200)
コード例 #2
0
def test_plot_lines_no_ax():
    x, fsamps = gen_line_data()
    plt.subplots()
    plot_lines(x, fsamps)
コード例 #3
0
def test_plot_lines_downsample():
    x, fsamps = gen_line_data()
    plt.subplots()
    plot_lines(x, fsamps, downsample=200)
コード例 #4
0
def test_plot_lines():
    x, fsamps = gen_line_data()
    fig, ax = plt.subplots()
    plot_lines(x, fsamps, ax)