<?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 &amp;quot;E&amp;quot; for powers of 10 in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/quot-E-quot-for-powers-of-10/m-p/725169#M90927</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;For a publication in a scientific paper I made graph under JMP (file attached). Editor asks me to change the "E" for powers of 10. In other words, 3.4 × 10⁵ instead of 3.4e+5. Could you please tell me if there is an easy way to do this ?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="puissance.JPG" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61408i06751683F552F46A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="puissance.JPG" alt="puissance.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;Sébastien&lt;/P&gt;</description>
    <pubDate>Fri, 23 Feb 2024 08:46:20 GMT</pubDate>
    <dc:creator>Emmerich38</dc:creator>
    <dc:date>2024-02-23T08:46:20Z</dc:date>
    <item>
      <title>"E" for powers of 10</title>
      <link>https://community.jmp.com/t5/Discussions/quot-E-quot-for-powers-of-10/m-p/725169#M90927</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;For a publication in a scientific paper I made graph under JMP (file attached). Editor asks me to change the "E" for powers of 10. In other words, 3.4 × 10⁵ instead of 3.4e+5. Could you please tell me if there is an easy way to do this ?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="puissance.JPG" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61408i06751683F552F46A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="puissance.JPG" alt="puissance.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;Sébastien&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2024 08:46:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/quot-E-quot-for-powers-of-10/m-p/725169#M90927</guid>
      <dc:creator>Emmerich38</dc:creator>
      <dc:date>2024-02-23T08:46:20Z</dc:date>
    </item>
    <item>
      <title>Re: "E" for powers of 10</title>
      <link>https://community.jmp.com/t5/Discussions/quot-E-quot-for-powers-of-10/m-p/725352#M90969</link>
      <description>&lt;P&gt;Hi Sébastien,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;with JMP 17 the best way would be to copy a vector graph into another graphing program and change the axis as you need it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;JMP 18 will be released in a couple of weeks with an option for scientific notations to make this natively possible in JMP.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope that helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jonas&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 07:52:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/quot-E-quot-for-powers-of-10/m-p/725352#M90969</guid>
      <dc:creator>Jonas_Rinne</dc:creator>
      <dc:date>2024-02-26T07:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: "E" for powers of 10</title>
      <link>https://community.jmp.com/t5/Discussions/quot-E-quot-for-powers-of-10/m-p/725370#M90973</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Local( {supers = "⁰¹²³⁴⁵⁶⁷⁸⁹", d, parts},
	parts = Words( Format( value, "Scientific", width, dec ), "e" ); // split on e
	Substitute Into( parts[2], "+", "", "-", "⁻" ); // ignore +, superscript -
	For( d = 0, d &amp;lt;= 9, d++, // superscript each digit
		Substitute Into( parts[2], Char( d ), Substr( supers, d + 1, 1 ))
	);
	if (value == 0, "0", parts[1] || " × 10" || parts[2]); // add x10 unless 0
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hi. There was a previous discussion on how to achieve this:&amp;nbsp;&lt;A href="https://community.jmp.com/t5/The-Plot-Thickens/Reply-All-Scientific-notation-such-as-6-02-10-using-custom-axis/ba-p/559110" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/The-Plot-Thickens/Reply-All-Scientific-notation-such-as-6-02-10-using-custom-axis/ba-p/559110&lt;/A&gt;. Essentially you use the script above to replace the e numbers with the x10 format. The link is to that previous discussion which gives more details.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;edit:&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/55174"&gt;@Katz0801&lt;/a&gt;&amp;nbsp; - thanks for cross referencing! Sorry, this was stuck in the spam filter for no obvious reason. - Craige&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2024 10:25:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/quot-E-quot-for-powers-of-10/m-p/725370#M90973</guid>
      <dc:creator>Katz0801</dc:creator>
      <dc:date>2024-02-27T10:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: "E" for powers of 10</title>
      <link>https://community.jmp.com/t5/Discussions/quot-E-quot-for-powers-of-10/m-p/725394#M90987</link>
      <description>&lt;P&gt;You can use a JMP 17 custom format to do it. (Test this code to make sure it does what you want!) Copy this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If(
	Pat Match(
		Format( :value, "Scientific", :width ),
		Pat Pos( 0 ) + Pat Immediate( Pat Break( "e" ), f ) + "e"
		+Pat Immediate( Pat Rem(), e )
	),
	f || "⨉10" || Substitute( e,
		"+", "⁺",
		"-", "⁻",
		"0", "⁰",
		"1", "¹",
		"2", "²",
		"3", "³",
		"4", "⁴",
		"5", "⁵",
		"6", "⁶",
		"7", "⁷",
		"8", "⁸",
		"9", "⁹"
	),
	Char( :value, :width, :dec )
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then open the axis dialog, Format-&amp;gt;custom, set custom, paste.&lt;/P&gt;
&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6347682476112w960h540r596" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6347682476112" data-account="6058004218001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6058004218001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6347682476112w960h540r596');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://community.jmp.com/t5/video/gallerypage/video-id/6347682476112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;
&lt;P&gt;The custom format uses the scientific format to make the "e" format then parses the fraction and exponent. It then reassembles the number with some Unicode characters. If you are not seeing exponents and multiplies and signs, your font might not include them. If the parse step fails, the custom format falls back to the char() function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;edit: &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/494"&gt;@XanGregg&lt;/a&gt;&amp;nbsp; post &lt;LI-MESSAGE title="Reply All: Scientific notation such as 6.02×10²³ using custom axis formats" uid="559110" url="https://community.jmp.com/t5/The-Plot-Thickens/Reply-All-Scientific-notation-such-as-6-02-10-using-custom-axis/m-p/559110#U559110" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-blog-thread lia-fa-icon lia-fa-blog lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 15:45:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/quot-E-quot-for-powers-of-10/m-p/725394#M90987</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2024-02-26T15:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: "E" for powers of 10</title>
      <link>https://community.jmp.com/t5/Discussions/quot-E-quot-for-powers-of-10/m-p/725415#M90992</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/53432"&gt;@Emmerich38&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/982"&gt;@Craige_Hales&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/41931"&gt;@Jonas_Rinne&lt;/a&gt;&amp;nbsp;: and, this was discussed here recently.&amp;nbsp;&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/Discussions/How-change-quot-E-quot-for-powers-of-10/m-p/725165#M90925" target="_blank"&gt;https://community.jmp.com/t5/Discussions/How-change-quot-E-quot-for-powers-of-10/m-p/725165#M90925&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 16:17:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/quot-E-quot-for-powers-of-10/m-p/725415#M90992</guid>
      <dc:creator>MRB3855</dc:creator>
      <dc:date>2024-02-26T16:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: "E" for powers of 10</title>
      <link>https://community.jmp.com/t5/Discussions/quot-E-quot-for-powers-of-10/m-p/725423#M90993</link>
      <description>&lt;P&gt;Nice, wished I new that earlier...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;just leaving this here in case someone is looking into this thread after the JMP 18 release:&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="Jonas_Rinne_0-1708966728241.png" style="width: 557px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61485i12BBE9D7DF817544/image-dimensions/557x366?v=v2" width="557" height="366" role="button" title="Jonas_Rinne_0-1708966728241.png" alt="Jonas_Rinne_0-1708966728241.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 16:59:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/quot-E-quot-for-powers-of-10/m-p/725423#M90993</guid>
      <dc:creator>Jonas_Rinne</dc:creator>
      <dc:date>2024-02-26T16:59:55Z</dc:date>
    </item>
  </channel>
</rss>

