-
Notifications
You must be signed in to change notification settings - Fork 32
Allow formatting the categorical encoded variables #158
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Milestone
Description
Currently they get formatted as C({parameter})[T.{value}] or {parameter}[T.{value}] if its already a string.
E.g.,
BinGrp = [0, 0, 0, 1, 1, 1]
becomes
C(BinGrp)[T.0] C(BinGrp)[T.1]
0 1 0
1 1 0
2 1 0
3 0 1
4 0 1
5 0 1It would be nice if we could pass in a format string to get simpler names. E.g. BinGrp0, BinGrp1 if we pass in a format string like "{parameter}{value}"
Moved from #46 (comment)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request