Skip to content
Merged
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ docs
~$paper.docx
revdep
dev/tmp.R
Rplots.pdf
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Description: Analyze repertory grids, a qualitative-quantitative
to quantitatively analyze and visualize repertory grid data (e.g. 'Fransella', 'Bell', & 'Bannister',
2004, ISBN: 978-0-470-09080-0). The package is part of the The package is part of the
<https://openrepgrid.org/> project.
Version: 0.1.18
Date: 2025-08-24
Version: 0.1.19
Date: 2026-03-26
Encoding: UTF-8
URL: https://github.com/markheckmann/OpenRepGrid
Imports:
Expand Down
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ S3method(drawDetails,gmSplitTextGrob)
S3method(names,repgrid)
S3method(plot,indexDilemma)
S3method(print,alignByLoadings)
S3method(print,biplot2d)
S3method(print,constructCor)
S3method(print,constructD)
S3method(print,constructPca)
Expand Down Expand Up @@ -44,6 +45,7 @@ export(addConstruct)
export(addElement)
export(addIndexColumnToMatrix)
export(addProjectionsToBiplot2d)
export(addQualityToBiplot2d)
export(addVarianceExplainedToBiplot2d)
export(alignByIdeal)
export(alignByLoadings)
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,15 @@
* `biplot2d`: New arg `projections` draws perpendicular projection lines from elements onto construct
axes. Supports `TRUE` (all) or numeric indices. `projections.e` selects which elements to project (#77)
`projections.col`, `projections.lty`, and `projections.lwd` accept per-element vectors for distinct styling.
New arg `projections.error` draws error segments showing the difference between projected and actual
rating values on construct axes. (#79)
* `biplot2d`: Construct pole labels are automatically colorized by preference status (green = preferred,
red = non-preferred, dark gray = neutral/undefined) when preferred poles are set in the repgrid object.
New arg `c.color.preferred` controls the behavior (`NULL` = auto-detect, `TRUE` = always, `FALSE` = never) (#71).
* `biplot2d`: New arg `quality` shows representation quality (cos²) for elements and constructs.
When enabled, cos² values are annotated below labels and colors are faded proportionally to quality
(well-represented items are opaque, poorly represented ones are transparent). `biplot2d` now
invisibly returns a rich list with coordinates, quality values, variance explained, and scaling factors.
* drop `{styler}` dependency (#72)

# OpenRepGrid 0.1.18
Expand Down
457 changes: 442 additions & 15 deletions R/repgrid-plots.r

Large diffs are not rendered by default.

33 changes: 32 additions & 1 deletion man/addProjectionsToBiplot2d.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 34 additions & 0 deletions man/addQualityToBiplot2d.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

69 changes: 68 additions & 1 deletion man/biplot2d.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions man/print.biplot2d.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading