cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
0 Kudos

グラフビルダーのグラフサイズを変える方法の提案

このウィッシュリストリクエストのきっかけは何ですか?

 

半導体データ解析では、多数のパラメータやロット、split conditionを扱うため、1回の解析で数百のグラフを描くことが多いです。

また、グラフビルダーはグラフを条件ごとに表示するためにとても便利なツールで、半導体解析にはとても有用です。

 

しかし1点困ったことがあります。

グラフ表示する際に、1つの画面でグラフを表示するようにグラフサイズを自動調整してしまうことです。

所望のグラフサイズに変えるためには、いずれかのグラフを右クリックしてサイズ変更する必要があるのですが、数百のグラフを表示するとグラフサイズが小さくなりすぎて右クリック出来ない不具合が発生します。

このため、所望のグラフを表示できません。

 

改善してほしいことは何ですか?

 

グラフビルダーで、グラフサイズ変更をグラフの右クリック以外で出来る様にしてください。

ツールバーに追加、ドロップダウンリストに追加、などの方法が考えられます。

 

 

この考え方がなぜ重要なのでしょうか?

 

グラフビルダーでの多数グラフの解析が「可能」になります。

現時点では、グラフサイズ変更が出来ないという些細な原因のためだけに事実上「不可能」となっています。

これは、多数のグラフを同時解析する分野にとってとても重要で書かせない機能です。

半導体だけではなく、多くの分野で渇望されると思われます。

3 Comments
Status changed to: Needs Info

Hello, and thank you for your request!

It sounds like there may be some existing features in JMP that could help with what you're trying to achieve. Here are a few options you might find useful:

  • Disable Auto-Fit: In Graph Builder, you can change the default behavior so that graphs don’t automatically resize to fit the window. This setting is available in the Graph Builder preferences under “Fit to Window.”

  • Use the Wrap Option: When displaying multiple graphs, the Wrap option can make it easier to manage and resize them collectively.

  • Click-and-Drag Resizing: Instead of right-clicking, you can simply click and drag to resize graphs, which may offer a more intuitive experience.

Please give these options a try and let me know if they help—or if I’ve misunderstood your request. 

hashi
Level II

Dear sarah,

 

Thank you for pronpt reply.

I've  already asked Japanese JMP support staff and received the answer the same as yours.

But, those useful technique are not effective for my probrem...

 

We made over100 graphs at once by wrapping grouping for conditions or lots.

In that case, only graph titles were shown and graph area were not displayed, then we could not "click the corner of graph area" at the setting of "Fit to window was off".

Would you confirm whether those technique is effective or not for my case again?

 

Hashidzume

hashi
Level II

Dear sarah-san,

 

Would you try sample script below?

This script indicates my issue  which relate to the graph size of graph builder. 

 

//////sample using Page Zone/////
Names default to here(1);
dt = As table(J(1000,2,Random Normal(0,1))||J(1000,1,random integer(1,100)),<<Column Names({X,Y,G})); dt:G<<Set Modeling Type( "Nominal" );

dt << Graph Builder(
        Show Control Panel( 0 ),
        Fit to Window( "Off" ),
        Variables( X( :X ), Y( :Y ), Page( :G, Levels per Row( 10 ) ) ),
        Elements( Points( X, Y, Legend( 5 ) ), Smoother( X, Y, Legend( 6 ) ) ) ); 
////////////////////////////