b246f26f5bb081970697a9f030a3982caf9efc97,examples/new.py,,,#,9

Before Change


    write("Progress:")
    my_progress_bar = write.progress(0)
    write("Loss:")
    loss_table = pd.DataFrame(columns=["loss"])
    loss_table = write.dataframe(loss_table)
    for i in range(100):
        my_progress_bar.progress(i)

After Change


with Notebook() as write:
    write.header("My awesome program", level=3)
    write("hello world")
    my_array = np.random.randn(100, 100)
    write("my array", my_array)

    progress = write.progress(0)
    for i in range(100):
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 3

Instances


Project Name: streamlit/streamlit
Commit Name: b246f26f5bb081970697a9f030a3982caf9efc97
Time: 2018-03-18
Author: adrien.g.treuille@gmail.com
File Name: examples/new.py
Class Name:
Method Name:


Project Name: streamlit/streamlit
Commit Name: 43b3e86250934229bbcbdbf8afc2a0d66a66f302
Time: 2019-11-11
Author: thiago@streamlit.io
File Name: docs/api-examples-source/charts.bar_chart.py
Class Name:
Method Name:


Project Name: GPflow/GPflow
Commit Name: 67dc76d1d5f30ce9e978818c9b5b776b40a92333
Time: 2020-03-18
Author: st--@users.noreply.github.com
File Name: tests/gpflow/test_base_prior.py
Class Name:
Method Name: get_gpmc_model_params


Project Name: streamlit/streamlit
Commit Name: 8088e4f41282ace03e0c522f8c6a2656cd52906f
Time: 2018-02-14
Author: adrien.g.treuille@gmail.com
File Name: examples/new.py
Class Name:
Method Name: