Skip to content

Commit

Permalink
Add relevant path to dataset received
Browse files Browse the repository at this point in the history
  • Loading branch information
Haleshot committed Oct 17, 2024
1 parent 937d677 commit 2d947fb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions 010-Mustjaab/Post Approval Study Recommender.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@ async def __(micropip):


@app.cell
def __(pd, pyodide):
PAS_FDA = pyodide.http.open_url("https://raw.githubusercontent.com/Mustjaab/PAS-Recommender/main/Post_Approval_Studies.csv")
PAS_FDA = pd.read_csv(PAS_FDA,header=0)
def __(pd):
# PAS_FDA = pyodide.http.open_url("https://raw.githubusercontent.com/Mustjaab/PAS-Recommender/main/Post_Approval_Studies.csv")
PAS_FDA = "assets\Post_Approval_Studies.csv"
PAS_FDA = pd.read_csv(PAS_FDA, header=0)
return (PAS_FDA,)


Expand Down

0 comments on commit 2d947fb

Please sign in to comment.