Changelog
Source:NEWS.md
socialranking 1.2.0
- Added
generateRandomPowerRelation()
- Added S3 class
DualLexcelScores
socialranking 1.1.0 (2023-11-29)
CRAN release: 2023-11-29
- Added
L2Scores()
andL2Ranking()
, along with aliaseslexcel2...()
- Added
LPScores()
andLPRanking()
, along with aliaseslexcelP...()
- Added
LPSScores()
andLPSRanking()
, along with aliaseslexcelPS...()
- Fixed
kramerSimpsonScores()
implementation which was not in line with the official definition - Changed succeq to succsim notation in documentation to reflect modern literature
socialranking 1.0.1 (2023-08-23)
CRAN release: 2023-08-23
Added -package alias to package description (fixing problem listed here).
socialranking 1.0.0 (2023-03-13)
CRAN release: 2023-03-13
This major update brings a lot of breaking changes that are hopefully justified.
- The structure of
PowerRelation
objects has been changed to improve usability and speed.-
$elements
is, as in the previous version, a vector of sorted, unique elements -
$equivalenceClasses
has been renamed to$eqs
-
$rankingCoalitions
and$rankingComparators
has been removed, they served no particular purpose - Added
$coalitionLookup()
to make it easy (and fast) to find equivalence class indexes that a coalition appears in - Added
$elementLookup()
to make it easy (and fast) to find coalitions that an element appears in - Changed coalitions to no longer be
sets::set
objects, but just normal vectors. This allows for one element to appear multiple times in the same coalition, which is more consistent with the ability to have a coalition appear multiple times in aPowerRealtion
object.
-
- Added
PowerRelation()
andas.PowerRelation()
- Added
SocialRanking()
- Added
coalitionLookup()
andelementLookup()
- Added
L1Scores()
andL1Ranking()
, along with its aliaseslexcel1...()
- Added
makePowerRelationMonotonic()
andappendMissingCoalitions()
- Added
powerRelationGenerator()
andgenerateNextPartition()
- Changed
createPowerset()
, replaced parameters logicalscopyToClipboard
andwriteLines
with characterresult
- Changed
ordinalBanzhafScores()
such that it returns a third value indicating how many comparisons were not made - Deprecated
newPowerRelation()
andnewPowerRelationFromString()
- Deprecated
SocialRankingSolution
class - Removed
mathjaxr
andsets
from dependencies
socialranking 0.1.1 (2022-04-25)
CRAN release: 2022-04-25
- Added parameter
equivalenceClasses
tonewPowerRelation()