<?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: Plotly in Python Tool in Alteryx Designer Desktop Discussions</title>
    <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Plotly-in-Python-Tool/m-p/485701#M98528</link>
    <description>&lt;P&gt;Hey, thanks for getting back to me. I've attached a simple example recreating the error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once I have run the cell generating the chart, everything I do in the workflow then generates the 'unhandled exception' error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 06 Nov 2019 14:02:40 GMT</pubDate>
    <dc:creator>jcktwnsnd</dc:creator>
    <dc:date>2019-11-06T14:02:40Z</dc:date>
    <item>
      <title>Plotly in Python Tool</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Plotly-in-Python-Tool/m-p/485168#M98322</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone tried to use the 'plotly' package in the Python tool?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been using it to generate a chart after prepping some data in Alteryx and once the chart has been created in the Jupyter environment, I go to any other tool in the workflow and I get this message and the whole thing freezes:&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="Capture.PNG" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/85040iD6046FDAF699ECD3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If anyone has seen anything similar or has any ideas it would be much appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Nov 2019 15:54:56 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Plotly-in-Python-Tool/m-p/485168#M98322</guid>
      <dc:creator>jcktwnsnd</dc:creator>
      <dc:date>2019-11-05T15:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: Plotly in Python Tool</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Plotly-in-Python-Tool/m-p/485351#M98399</link>
      <description>&lt;P&gt;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/119966"&gt;@jcktwnsnd&lt;/a&gt;&amp;nbsp;It seems to work fine for me. Are you able to share your python code or the workflow with the dataset here?&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="Capture.PNG" style="width: 607px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/85107i3655F1FA5FDDECDB/image-dimensions/607x604?v=v2" width="607" height="604" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Nov 2019 19:51:57 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Plotly-in-Python-Tool/m-p/485351#M98399</guid>
      <dc:creator>DiganP</dc:creator>
      <dc:date>2019-11-05T19:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: Plotly in Python Tool</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Plotly-in-Python-Tool/m-p/485701#M98528</link>
      <description>&lt;P&gt;Hey, thanks for getting back to me. I've attached a simple example recreating the error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once I have run the cell generating the chart, everything I do in the workflow then generates the 'unhandled exception' error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2019 14:02:40 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Plotly-in-Python-Tool/m-p/485701#M98528</guid>
      <dc:creator>jcktwnsnd</dc:creator>
      <dc:date>2019-11-06T14:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: Plotly in Python Tool</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Plotly-in-Python-Tool/m-p/486308#M98751</link>
      <description>&lt;P&gt;You'll need to turn on init_notebook_mode. Add the following to your first cell:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;from plotly.offline import  init_notebook_mode
init_notebook_mode(connected=True)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if this fixes the problem. You may need to create a new workflow.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2019 15:01:51 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Plotly-in-Python-Tool/m-p/486308#M98751</guid>
      <dc:creator>AndrewKramer</dc:creator>
      <dc:date>2019-11-07T15:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Plotly in Python Tool</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Plotly-in-Python-Tool/m-p/486885#M98959</link>
      <description>&lt;P&gt;That's done the trick, thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jack&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 16:01:15 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Plotly-in-Python-Tool/m-p/486885#M98959</guid>
      <dc:creator>jcktwnsnd</dc:creator>
      <dc:date>2019-11-08T16:01:15Z</dc:date>
    </item>
  </channel>
</rss>

