28 lines
559 B
Python
28 lines
559 B
Python
import marimo
|
|
|
|
__generated_with = "0.9.10"
|
|
app = marimo.App(width="medium")
|
|
|
|
|
|
@app.cell
|
|
def __():
|
|
import matplotlib
|
|
import matplotlib.pyplot as plt
|
|
import numpy as np
|
|
|
|
matplotlib.rcParams["text.usetex"] = False
|
|
plt.rcParams["font.family"] = "Times New Roman"
|
|
plt.rcParams["font.size"] = 16
|
|
|
|
c_1 = (139 / 255, 0 / 255, 0 / 255)
|
|
c_2 = (0, 0, 0)
|
|
c_3 = (191 / 255, 191 / 255, 191 / 255)
|
|
c_4 = (230 / 255, 109 / 255, 104 / 255)
|
|
|
|
|
|
return c_1, c_2, c_3, c_4, matplotlib, np, plt
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run()
|