openpharma / openpharma/graphicalMCP
`plot.initial_graph` breaks when `pairs` curvature is implicit and a paired edge curve is adjusted
Open
Nobody has claimed this yet.
- Dominant language
- R
- Stars
- 21
- Forks
- 1
- Avg merge
- 4h 27m
- Merged PRs (30d)
- 11
Description
wd_2005_graph <- graph_create(
c(1 / 3, 1 / 3, 1 / 3),
rbind(
c(0, 1, 0),
c(0, 0, 1),
c(.5, .5, 0)
)
)
plot(wd_2005_graph, layout = "grid", nrow = 1, asp = .1, edge_curves = c("pairs" = 4, "H3|H2" = 6)) # OK
plot(wd_2005_graph, layout = "grid", nrow = 1, asp = .1, edge_curves = c("H3|H2" = 6)) # Not OK
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by running the two provided plot() calls with wd_2005_graph and trace the plot.initial_graph path, comparing how implicit and explicit pairs curvature are handled. Done means the call with only "H3|H2" = 6 behaves correctly like the explicit "pairs" case, without breaking the existing working example.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- r
- Domain
- data-visualization
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 48/100