Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added spaces plus green #23

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
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
22 changes: 2 additions & 20 deletions .github/workflows/ubuntodotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@

name: .NET

#on: pull_request_target

on:
pull_request_target:
branches: [ "TestRuns" ]
on: pull_request_target

jobs:

Expand Down Expand Up @@ -42,21 +38,7 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: 3.11.6



- name: GIT commit and push docs
env:
CI_COMMIT_MESSAGE: Continuous Integration Build Artifacts
CI_COMMIT_AUTHOR: Continuous Integration
run: |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "[email protected]"
git add docs
git commit -m "${{ env.CI_COMMIT_MESSAGE }}"
git push TestRuns



#installing packages
- name: Install Python pandas
run: python -m pip install --upgrade pip pandas
Expand Down
12 changes: 8 additions & 4 deletions modelCsharp/TestModel/testGraph/testGraph/testGraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def make_observed(observed):
makeplot(Data,color)
make_observed(observed_data[datefilter])
Graph.tight_layout(pad=1.5)
Graph.suptitle('DRAFT VERSION',fontsize = 32, color = "b")
Graph.suptitle('DRAFT VERSION',fontsize = 32, color = "g")

pos+=1

Expand All @@ -122,8 +122,7 @@ def make_observed(observed):
Data = AllData.loc[:,(t,'CropN')].sort_index()
makeplot(Data,color)
make_observed(observed_data[datefilter])
pos+=1

pos+=1

plt.savefig('testplot.png')

Expand All @@ -132,10 +131,15 @@ def make_observed(observed):
builder.insert_image("testplot.png")
doc.save("index.html")

plt.show()





plt.show()

#shutil.rmtree(path+"\\OutputFiles")
#shutil.rmtree(path+"\\NitrogenApplied")



Loading