<?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 code in Qlik Sense using ggplot2 --- R to Qlik Sense in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/R-code-in-Qlik-Sense-using-ggplot2-R-to-Qlik-Sense/m-p/62108#M14213</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I am trying to recreate this code in Qlik... everything which is needed is there, except, for some reason I don't know how to modify my R code for Qlik..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;R code:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;library(ggplot2)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;mydata &amp;lt;- read.csv("Mispriced-Diamonds.csv")&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ggplot(data = mydata, aes(x = carat, y=price)) + geom_point() + geom_smooth()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;my Dimension is: carat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;and my Measure...&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;In Qlik Sense I wrote almost the same (in 10 different variations, on of them...):&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;R.ScriptEval('library(ggplot2); ggplot(data = q, aes(x = q$carat, y = q$sumprice)) + geom_line()', carat as carat, Sum(price) as sumprice)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Can anyone give me a hint?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 16 Nov 2024 08:14:50 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-11-16T08:14:50Z</dc:date>
    <item>
      <title>R code in Qlik Sense using ggplot2 --- R to Qlik Sense</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/R-code-in-Qlik-Sense-using-ggplot2-R-to-Qlik-Sense/m-p/62108#M14213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I am trying to recreate this code in Qlik... everything which is needed is there, except, for some reason I don't know how to modify my R code for Qlik..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;R code:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;library(ggplot2)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;mydata &amp;lt;- read.csv("Mispriced-Diamonds.csv")&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ggplot(data = mydata, aes(x = carat, y=price)) + geom_point() + geom_smooth()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;my Dimension is: carat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;and my Measure...&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;In Qlik Sense I wrote almost the same (in 10 different variations, on of them...):&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;R.ScriptEval('library(ggplot2); ggplot(data = q, aes(x = q$carat, y = q$sumprice)) + geom_line()', carat as carat, Sum(price) as sumprice)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Can anyone give me a hint?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Nov 2024 08:14:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/R-code-in-Qlik-Sense-using-ggplot2-R-to-Qlik-Sense/m-p/62108#M14213</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T08:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: R code in Qlik Sense using ggplot2 --- R to Qlik Sense</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/R-code-in-Qlik-Sense-using-ggplot2-R-to-Qlik-Sense/m-p/62109#M14214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Anton, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you sure you can use ggplot in Qlik Sense ?&lt;/P&gt;&lt;P&gt;I tought we could used R code only to calculate but not to plot graph (without extention, JSON, ...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it'll help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 10:00:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/R-code-in-Qlik-Sense-using-ggplot2-R-to-Qlik-Sense/m-p/62109#M14214</guid>
      <dc:creator>yannick_c</dc:creator>
      <dc:date>2018-07-25T10:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: R code in Qlik Sense using ggplot2 --- R to Qlik Sense</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/R-code-in-Qlik-Sense-using-ggplot2-R-to-Qlik-Sense/m-p/1640898#M14215</link>
      <description>&lt;P&gt;I know it's an old post but I've just published a document on how to easily incorporate ggplot charts in Qlik Sense&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Sense-Enterprise-Documents/Qlik-Sense-and-R-integration-ggplot-and-other-visualizations/ta-p/1640867#U1640867" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Sense-Enterprise-Documents/Qlik-Sense-and-R-integration-ggplot-and-other-visualizations/ta-p/1640867#U1640867&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Lorenzo&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 15:03:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/R-code-in-Qlik-Sense-using-ggplot2-R-to-Qlik-Sense/m-p/1640898#M14215</guid>
      <dc:creator>lorenzoconforti</dc:creator>
      <dc:date>2019-10-29T15:03:41Z</dc:date>
    </item>
  </channel>
</rss>

