<?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 R Tool Not Rendering Graph Correctly in Alteryx Designer Desktop Discussions</title>
    <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/R-Tool-Not-Rendering-Graph-Correctly/m-p/153033#M40407</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone had trouble integrating ggplot2 with the R tool?&amp;nbsp; I use the following code that loops through variables and graphs them using R Studio:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;for(i in variable1) {&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;t &amp;lt;- all_peril1 %&amp;gt;%&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;arrange(Variable, as.numeric(Level)) %&amp;gt;%&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;filter(Variable == i) %&amp;gt;%&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;ggplot(aes(x = as.factor(as.numeric(Level)), group = 1)) +&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;geom_point(aes(y=factor, color = model)) + &lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;geom_line(aes(y = factor, group = model, color = model)) +&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;#geom_text(aes(y = factor, label = round(factor, digits =2)),position = position_dodge(width=.09), size = 3, vjust = -.5) +&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;theme(axis.text.x = element_text(angle = 90, hjust =1)) +&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;labs(title = "Motor Home Peril Comparison", colour="Peril",x=i,y="Factor") &lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;out &amp;lt;- paste0(as.name(i), ".pdf")&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;ggsave(out, plot = t, device = "pdf", width = 10, height = 6, units = "in")&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;print(t)&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;}&lt;/EM&gt;&lt;/STRONG&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="rstudiocapture.JPG" style="width: 851px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/32066i0D5F9B80189E652A/image-size/large?v=v2&amp;amp;px=999" role="button" title="rstudiocapture.JPG" alt="rstudiocapture.JPG" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I run the exact same code in Alteryx's r-tool, I get the wrong x axis labels and thus, the wrong graph using&amp;nbsp;the same data set:&amp;nbsp; The only difference is that I wrapped the code in the AlteryxGraph statement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;AlteryxGraph(1, width=2400, height=3000, res=300)&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;#Insert code to plot graph here&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;all_peril1 &amp;lt;- all_peril %&amp;gt;% #bind rows within paraenthisis &lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;filter(!is.na(as.numeric(Level))) %&amp;gt;% #filter to what level is not numeric&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;arrange(Variable, as.numeric(Level)) #arrange by variable and levels&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;variable1 &amp;lt;- unique(all_peril1$Variable)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;for(i in variable1) {&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;t &amp;lt;- all_peril1 %&amp;gt;%&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;arrange(Variable, as.numeric(Level)) %&amp;gt;%&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;filter(Variable == i) %&amp;gt;%&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;ggplot(aes(x = as.factor(as.numeric(Level)), group = 1)) +&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;geom_point(aes(y=factor, color = model)) + &lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;geom_line(aes(y = factor, group = model, color = model)) +&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;#geom_text(aes(y = factor, label = round(factor, digits =2)),position = position_dodge(width=.09), size = 3, vjust = -.5) +&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;theme(axis.text.x = element_text(angle = 90, hjust =1)) +&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;labs(title = "Motor Home Peril Comparison", colour="Peril",x=i,y="Factor") &lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;#out &amp;lt;- paste0(as.name(i), ".pdf")&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;#ggsave(out, plot = t, device = "pdf", width = 10, height = 6, units = "in")&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;print(t)&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;#pie(c(0.12, 0.3, 0.26), col = c("purple","violetred1","green3"))&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;invisible(dev.off())&lt;/STRONG&gt;&lt;/EM&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="alteryxrstudiocapture.JPG" style="width: 700px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/32067i8534D928085274F9/image-size/large?v=v2&amp;amp;px=999" role="button" title="alteryxrstudiocapture.JPG" alt="alteryxrstudiocapture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have an idea why this is happening?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 24 May 2018 05:08:43 GMT</pubDate>
    <dc:creator>jbh1128d1</dc:creator>
    <dc:date>2018-05-24T05:08:43Z</dc:date>
    <item>
      <title>R Tool Not Rendering Graph Correctly</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/R-Tool-Not-Rendering-Graph-Correctly/m-p/153033#M40407</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone had trouble integrating ggplot2 with the R tool?&amp;nbsp; I use the following code that loops through variables and graphs them using R Studio:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;for(i in variable1) {&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;t &amp;lt;- all_peril1 %&amp;gt;%&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;arrange(Variable, as.numeric(Level)) %&amp;gt;%&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;filter(Variable == i) %&amp;gt;%&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;ggplot(aes(x = as.factor(as.numeric(Level)), group = 1)) +&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;geom_point(aes(y=factor, color = model)) + &lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;geom_line(aes(y = factor, group = model, color = model)) +&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;#geom_text(aes(y = factor, label = round(factor, digits =2)),position = position_dodge(width=.09), size = 3, vjust = -.5) +&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;theme(axis.text.x = element_text(angle = 90, hjust =1)) +&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;labs(title = "Motor Home Peril Comparison", colour="Peril",x=i,y="Factor") &lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;out &amp;lt;- paste0(as.name(i), ".pdf")&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;ggsave(out, plot = t, device = "pdf", width = 10, height = 6, units = "in")&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;print(t)&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;}&lt;/EM&gt;&lt;/STRONG&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="rstudiocapture.JPG" style="width: 851px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/32066i0D5F9B80189E652A/image-size/large?v=v2&amp;amp;px=999" role="button" title="rstudiocapture.JPG" alt="rstudiocapture.JPG" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I run the exact same code in Alteryx's r-tool, I get the wrong x axis labels and thus, the wrong graph using&amp;nbsp;the same data set:&amp;nbsp; The only difference is that I wrapped the code in the AlteryxGraph statement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;AlteryxGraph(1, width=2400, height=3000, res=300)&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;#Insert code to plot graph here&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;all_peril1 &amp;lt;- all_peril %&amp;gt;% #bind rows within paraenthisis &lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;filter(!is.na(as.numeric(Level))) %&amp;gt;% #filter to what level is not numeric&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;arrange(Variable, as.numeric(Level)) #arrange by variable and levels&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;variable1 &amp;lt;- unique(all_peril1$Variable)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;for(i in variable1) {&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;t &amp;lt;- all_peril1 %&amp;gt;%&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;arrange(Variable, as.numeric(Level)) %&amp;gt;%&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;filter(Variable == i) %&amp;gt;%&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;ggplot(aes(x = as.factor(as.numeric(Level)), group = 1)) +&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;geom_point(aes(y=factor, color = model)) + &lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;geom_line(aes(y = factor, group = model, color = model)) +&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;#geom_text(aes(y = factor, label = round(factor, digits =2)),position = position_dodge(width=.09), size = 3, vjust = -.5) +&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;theme(axis.text.x = element_text(angle = 90, hjust =1)) +&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;labs(title = "Motor Home Peril Comparison", colour="Peril",x=i,y="Factor") &lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;#out &amp;lt;- paste0(as.name(i), ".pdf")&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;#ggsave(out, plot = t, device = "pdf", width = 10, height = 6, units = "in")&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;print(t)&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;#pie(c(0.12, 0.3, 0.26), col = c("purple","violetred1","green3"))&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;invisible(dev.off())&lt;/STRONG&gt;&lt;/EM&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="alteryxrstudiocapture.JPG" style="width: 700px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/32067i8534D928085274F9/image-size/large?v=v2&amp;amp;px=999" role="button" title="alteryxrstudiocapture.JPG" alt="alteryxrstudiocapture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have an idea why this is happening?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 May 2018 05:08:43 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/R-Tool-Not-Rendering-Graph-Correctly/m-p/153033#M40407</guid>
      <dc:creator>jbh1128d1</dc:creator>
      <dc:date>2018-05-24T05:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: R Tool Not Rendering Graph Correctly</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/R-Tool-Not-Rendering-Graph-Correctly/m-p/153234#M40408</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/19186"&gt;@jbh1128d1&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What version of Alteryx Designer do you use please?&lt;/P&gt;
&lt;P&gt;Would you be able to share a package with your workflow and data source?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have run the following&amp;nbsp;test [source:&amp;nbsp;&lt;A href="http://tutorials.iq.harvard.edu/R/Rgraphics/Rgraphics.html" target="_blank"&gt;http://tutorials.iq.harvard.edu/R/Rgraphics/Rgraphics.html&lt;/A&gt;] but&amp;nbsp;I couldn't recreate your issue.&lt;/P&gt;
&lt;P&gt;Environment: 2018.1, R 3.3.2&lt;/P&gt;
&lt;P&gt;same behaviour with different resolution for &lt;EM&gt;AlteryxGraph&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;In RStudio:&lt;/STRONG&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="ggplot_RStudio.png" style="width: 999px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/32105i165C0ED7300BEB4F/image-size/large?v=v2&amp;amp;px=999" role="button" title="ggplot_RStudio.png" alt="ggplot_RStudio.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;In Alteryx Designer:&lt;/STRONG&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="ggplot_RLab_code.png" style="width: 999px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/32106i62FA3A6AD8D800CC/image-size/large?v=v2&amp;amp;px=999" role="button" title="ggplot_RLab_code.png" alt="ggplot_RLab_code.png" /&gt;&lt;/span&gt;&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="ggplot_RLab_graph.png" style="width: 999px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/32107i5341F3B1CD67E530/image-size/large?v=v2&amp;amp;px=999" role="button" title="ggplot_RLab_graph.png" alt="ggplot_RLab_graph.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Paul Noirel&lt;/P&gt;
&lt;P&gt;Sr Customer Support Engineer, Alteryx&lt;/P&gt;</description>
      <pubDate>Wed, 11 Apr 2018 16:41:33 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/R-Tool-Not-Rendering-Graph-Correctly/m-p/153234#M40408</guid>
      <dc:creator>PaulN</dc:creator>
      <dc:date>2018-04-11T16:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: R Tool Not Rendering Graph Correctly</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/R-Tool-Not-Rendering-Graph-Correctly/m-p/153295#M40409</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/7598"&gt;@PaulN&lt;/a&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using Alteryx Designer version 11.7.4.37815.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can't hand this data over but I ended up using a filter tool and picking which variables I wanted to sort in numeric order and changed those variables values to integers.&amp;nbsp; Then I run the code twice.&amp;nbsp; In effect,&amp;nbsp; &amp;nbsp;the filter tool and change to integer replaced the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;all_peril1 &amp;lt;- all_peril %&amp;gt;% #bind rows within paraenthisis &lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;filter(!is.na(as.numeric(value))) %&amp;gt;% #filter to what level is not numeric&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;arrange(Variable, as.numeric(value)) #arrange by variable and levels&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Apr 2018 18:55:39 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/R-Tool-Not-Rendering-Graph-Correctly/m-p/153295#M40409</guid>
      <dc:creator>jbh1128d1</dc:creator>
      <dc:date>2018-04-11T18:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: R Tool Not Rendering Graph Correctly</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/R-Tool-Not-Rendering-Graph-Correctly/m-p/153756#M40410</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/19186"&gt;@jbh1128d1&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am glad you found a way to solve your issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the update,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Paul Noirel&lt;/P&gt;
&lt;P&gt;Sr Customer Support Engineer, Alteryx&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2018 17:13:25 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/R-Tool-Not-Rendering-Graph-Correctly/m-p/153756#M40410</guid>
      <dc:creator>PaulN</dc:creator>
      <dc:date>2018-04-12T17:13:25Z</dc:date>
    </item>
  </channel>
</rss>

