<?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: Having trouble changing the y axis scale in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Having-trouble-changing-the-y-axis-scale/m-p/432843#M68258</link>
    <description>&lt;P&gt;Thank you! This worked for me. I was wondering how you get the double line symbol before "Char"?&lt;/P&gt;</description>
    <pubDate>Thu, 04 Nov 2021 00:20:21 GMT</pubDate>
    <dc:creator>hannahmcnamara</dc:creator>
    <dc:date>2021-11-04T00:20:21Z</dc:date>
    <item>
      <title>Having trouble changing the y axis scale</title>
      <link>https://community.jmp.com/t5/Discussions/Having-trouble-changing-the-y-axis-scale/m-p/432376#M68211</link>
      <description>&lt;P&gt;I am working on a graph of Voltage vs Current. I have my y axis (current scale) set to log and i want to change the scale to the format 10e-2 (for example). Everytime I try to do this, the graph scale to 1e-1. I need the scale to be in the notaion 10e not 1e. Can anyone hlep with this?&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:39:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Having-trouble-changing-the-y-axis-scale/m-p/432376#M68211</guid>
      <dc:creator>hannahmcnamara</dc:creator>
      <dc:date>2023-06-10T23:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: Having trouble changing the y axis scale</title>
      <link>https://community.jmp.com/t5/Discussions/Having-trouble-changing-the-y-axis-scale/m-p/432555#M68226</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/33620"&gt;@hannahmcnamara&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can have complete control over the format if you specify a custom format for the axis, like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ih_0-1635946696388.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/37225iA6C7DC10A0C90E1E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ih_0-1635946696388.png" alt="ih_0-1635946696388.png" /&gt;&lt;/span&gt;&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="ih_1-1635946745991.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/37226i1B75FD79DDE40721/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ih_1-1635946745991.png" alt="ih_1-1635946745991.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Script to recreate graph:&lt;/P&gt;
&lt;LI-SPOILER&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names default to here(1);

//Make some example data and specify a couple values to check results
dt = New Table( "Example Data",
	Add Rows( 1000 ),
	New Column( "Data",
		Numeric,
		"Continuous",
		Format( "Best", 12 ),
		Formula( Exp( Random Uniform( 1, 100 ) ) ),
		Set Selected
	)
);
dt:Data &amp;lt;&amp;lt; Delete Formula;
dt:Data[1] = 1;
dt:Data[2] = 10;

//In graph builder choose the log scale and then specify a custom format
gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size( 822, 339 ),
	Show Control Panel( 0 ),
	Variables( X( :Data ) ),
	Elements( Points( X, Legend( 25 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"Data",
			ScaleBox,
			{Scale( "Log" ), Format(
				"Custom",
				Formula( "10^" || Char( Log10( value ) ) ),
				12
			), Min( 1 ), Max( 1e+45 ), Inc( 1 ), Minor Ticks( 0 )}
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI-SPOILER&gt;</description>
      <pubDate>Wed, 03 Nov 2021 13:39:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Having-trouble-changing-the-y-axis-scale/m-p/432555#M68226</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2021-11-03T13:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: Having trouble changing the y axis scale</title>
      <link>https://community.jmp.com/t5/Discussions/Having-trouble-changing-the-y-axis-scale/m-p/432843#M68258</link>
      <description>&lt;P&gt;Thank you! This worked for me. I was wondering how you get the double line symbol before "Char"?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Nov 2021 00:20:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Having-trouble-changing-the-y-axis-scale/m-p/432843#M68258</guid>
      <dc:creator>hannahmcnamara</dc:creator>
      <dc:date>2021-11-04T00:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: Having trouble changing the y axis scale</title>
      <link>https://community.jmp.com/t5/Discussions/Having-trouble-changing-the-y-axis-scale/m-p/432969#M68264</link>
      <description>&lt;P&gt;Good question because it took me a while to figure out how to do that interactively too.&amp;nbsp; If you type the upper bar character '|' in the formula editor you will first get the or symbol, then if you type it again you will get the concatenate operator '||'.&amp;nbsp; Also, if you double click on the formula it will open a text editor where you can type the two upper bars.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Nov 2021 12:12:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Having-trouble-changing-the-y-axis-scale/m-p/432969#M68264</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2021-11-04T12:12:44Z</dc:date>
    </item>
  </channel>
</rss>

