<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Ho to handle cryptic Column names? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Ho-to-handle-cryptic-Column-names/m-p/722751#M90501</link>
    <description>&lt;P&gt;What I have done in the past, is to create a new Column Property, called something like, "Alt Name, and then save a simple script to the data table, which upon running takes the Alt Name for each column and makes it the column name, and then saves the old column name as the Alt Name Column Property.&lt;/P&gt;</description>
    <pubDate>Thu, 08 Feb 2024 06:45:15 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2024-02-08T06:45:15Z</dc:date>
    <item>
      <title>Ho to handle cryptic Column names?</title>
      <link>https://community.jmp.com/t5/Discussions/Ho-to-handle-cryptic-Column-names/m-p/722727#M90498</link>
      <description>&lt;P&gt;In my data table, I have thousands of cryptic column names.&lt;/P&gt;&lt;P&gt;Is there a possibility to facilitate work with the table (human readable names)&amp;nbsp; - but keep the data table compatible with the incoming data (keep cryptic names).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;- alternative column name in the preferences&lt;/P&gt;&lt;P&gt;- replace column names with name from notes&amp;nbsp;&lt;/P&gt;&lt;P&gt;- extend "search for notes"?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1707370931743.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60980i739F810A3334AF0B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1707370931743.png" alt="hogi_0-1707370931743.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Column Manager in Jmp18 already helps a bit:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1707370970388.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60981i253243928C90BB16/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1707370970388.png" alt="hogi_1-1707370970388.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Data Table( "Big Class" ):height &amp;lt;&amp;lt; Set Name( "FDGDGD_645643545343_h" )&amp;lt;&amp;lt; Set Property( "Notes", "height" );
Data Table( "Big Class" ):weight &amp;lt;&amp;lt; Set Name( "DFGDGD_435435343_w" )&amp;lt;&amp;lt; Set Property( "Notes", "weight" );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 06:40:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Ho-to-handle-cryptic-Column-names/m-p/722727#M90498</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-02-08T06:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Ho to handle cryptic Column names?</title>
      <link>https://community.jmp.com/t5/Discussions/Ho-to-handle-cryptic-Column-names/m-p/722739#M90500</link>
      <description>&lt;P&gt;You could create mapping table and use that to go back and forth with Recode&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1707371952390.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60982iEDE8A4D44AB98B83/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1707371952390.png" alt="jthi_0-1707371952390.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Columns can also have multiple names but no idea how to access those expect by changing the language (x-id seems the most interesting here)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Column(["en" =&amp;gt; "name", "ja" =&amp;gt; "名前", "x-id" =&amp;gt; "S_name_Col", "zh-CN" =&amp;gt; "姓名"],
	Character,
	"Nominal",
	Set Property(
		"Notes",
		["en" =&amp;gt; "...usually used as a label variable in plots",
		"ja" =&amp;gt; "散布図のラベル変数として使用する。",
		"x-id" =&amp;gt; "S_usually_used_as_a_label_variable_Not",
		"zh-CN" =&amp;gt; "...通常用作图中的标签变量"]
	),
	Set Selected,
	Set Display Width(0)
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can also add your own, but again no idea how to access those (except from the column script)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = New Table("");
dt &amp;lt;&amp;lt; New Column(["en" =&amp;gt; "test", "x-id" =&amp;gt; "TEST2", "AAA" =&amp;gt; "BBB"]);
Show(Arg(column(1) &amp;lt;&amp;lt; get script));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 08 Feb 2024 06:02:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Ho-to-handle-cryptic-Column-names/m-p/722739#M90500</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-02-08T06:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Ho to handle cryptic Column names?</title>
      <link>https://community.jmp.com/t5/Discussions/Ho-to-handle-cryptic-Column-names/m-p/722751#M90501</link>
      <description>&lt;P&gt;What I have done in the past, is to create a new Column Property, called something like, "Alt Name, and then save a simple script to the data table, which upon running takes the Alt Name for each column and makes it the column name, and then saves the old column name as the Alt Name Column Property.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 06:45:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Ho-to-handle-cryptic-Column-names/m-p/722751#M90501</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-02-08T06:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Ho to handle cryptic Column names?</title>
      <link>https://community.jmp.com/t5/Discussions/Ho-to-handle-cryptic-Column-names/m-p/722779#M90503</link>
      <description>&lt;P&gt;Script to toggle between two versions of column names - that's a cool workaround :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am surprised that there is no official solution ... in Jmp #17 /2024&lt;/P&gt;&lt;P&gt;Maybe it will be added in a future release?&lt;/P&gt;&lt;P&gt;here is the wish:&amp;nbsp;&lt;LI-MESSAGE title="Column Property: Column Name Alias" uid="722768" url="https://community.jmp.com/t5/JMP-Wish-List/Column-Property-Column-Name-Alias/m-p/722768#U722768" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 08:28:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Ho-to-handle-cryptic-Column-names/m-p/722779#M90503</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-02-08T08:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Ho to handle cryptic Column names?</title>
      <link>https://community.jmp.com/t5/Discussions/Ho-to-handle-cryptic-Column-names/m-p/723263#M90541</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;just highlighted another Wish from 2020:&amp;nbsp;&lt;LI-MESSAGE title="Allow secondary or alternate column names" uid="272772" url="https://community.jmp.com/t5/JMP-Wish-List/Allow-secondary-or-alternate-column-names/m-p/272772#U272772" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;let's hope that Jmp developers will see the benefit.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 13:55:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Ho-to-handle-cryptic-Column-names/m-p/723263#M90541</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-02-09T13:55:33Z</dc:date>
    </item>
  </channel>
</rss>

