Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"python-envs.defaultEnvManager": "ms-python.python:system",
"python-envs.pythonProjects": []
}
6 changes: 5 additions & 1 deletion bash_echo_terminal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,8 @@ echo ""

echo "Here is a list of awesome ANVIL members who are learning git:"
echo "Molly, after many years a PI needs a refresher!"
echo "Andrew should go here once we figure this out. (Andrew was here!)"
echo "Andrew should go here once we figure this out. (Andrew was here)"
echo "Molly's change is going here, trying to conflict with an updated main branch"
echo "Andrew should go here once we figure this out. (Andrew was here!)"
echo "Jingxuan was here."

6 changes: 4 additions & 2 deletions python_line_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@

plt.plot([x1, x2], [y1, y2])
plt.show()


plt.title('A simple line plot')
plt.xlabel('x-axis')
plt.ylabel('y-axis')
plt.grid()