The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here

Reversing strings (nominal attribute values)

tennenrishintennenrishin Member Posts: 177 Contributor II
edited November 2018 in Help
Is there any way to reverse strings (nominal attribute values) in RM?

Background, if interested:

My process generates a bubble chart, with a nominal color axis.
It so happens that alphabetical proximity of these nominal values has a tendency to correlate with spatial proximity in the bubbles' positions.
In other words, if the nominal (color) values are alphabetically ordered, then bubbles of the same color tend to be cluttered together.

Because of my specific application, it would be much better to be able to distinguish the bubbles by color when they are close to each other. So I need to re-order the color axis.

Ideally, I would like to use alphabetically ordered coloring on the reversed strings.

Answers

  • MariusHelfMariusHelf RapidMiner Certified Expert, Member Posts: 1,869 Unicorn
    Hi, there is no way to reverse strings out of the box. But if it is enough to put the last, let's say, 2 characters to the front, you can use the Replace operator with a regular expression like this:
    (.*)(.)(.)
    and a replacement string like this:
    $3$2$1
    Best, Marius
Sign In or Register to comment.