We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 884da6d + 3af981f commit 1ba0619Copy full SHA for 1ba0619
README.md
@@ -5,7 +5,8 @@
5
To install **literer**, install it using pip. Run the following commands:
6
7
```
8
-pip install literer # Install the package with pip
+ # Install the package with pip
9
+pip install literer
10
11
# To uninstall the package again, just use
12
# pip uninstall literer
@@ -73,8 +74,8 @@ import pandas as pd
73
74
75
df_papers = pd.DataFrame({
76
"authors": [", ".join(p["authors"]) for p in papers],
- "year": [p["year"] for p in all_papers],
77
- "title": [p["title"] for p in all_papers],
+ "year": [p["year"] for p in papers],
78
+ "title": [p["title"] for p in papers],
79
"relevance_score": scores,
80
"relevance_reason": reasons
81
})
0 commit comments