Skip to content

Commit

Permalink
Fix typo in readme (#31)
Browse files Browse the repository at this point in the history
* Fix typo in readme (closes #30)

* change color to a hex string
  • Loading branch information
shapiromatron committed Nov 1, 2022
1 parent d7ec65c commit f288456
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ fp.forestplot(df, # the dataframe with results data
right_annoteheaders=["P-value", "Variable group"], # ^corresponding headers
groupvar="group", # column containing group labels
group_order=["labor factors", "occupation", "age", "health factors",
"family factors', "area of residence", "other factors"],
"family factors", "area of residence", "other factors"],
xlabel="Pearson correlation coefficient", # x-label title
xticks=[-.4,-.2,0, .2], # x-ticks to be printed
sort=True, # sort estimates in ascending order
Expand All @@ -225,7 +225,7 @@ fp.forestplot(df, # the dataframe with results data
**{"marker": "D", # set maker symbol as diamond
"markersize": 35, # adjust marker size
"xlinestyle": (0, (10, 5)), # long dash for x-reference line
"xlinecolor": ".1", # gray color for x-reference line
"xlinecolor": "#808080", # gray color for x-reference line
"xtick_size": 12, # adjust x-ticker fontsize
}
)
Expand Down

0 comments on commit f288456

Please sign in to comment.