<?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 Help with R Script - First Timer in Desktop</title>
    <link>https://community.fabric.microsoft.com/t5/Desktop/Help-with-R-Script-First-Timer/m-p/2383820#M856437</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Looking for help from anyone experienced in R Scripts&lt;/P&gt;&lt;P&gt;First time trying to use the R Script Visual to create an x-y scatter plot.&lt;/P&gt;&lt;P&gt;I have the following table of sample data:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Facility&lt;/TD&gt;&lt;TD&gt;WFD&lt;/TD&gt;&lt;TD&gt;VisitCount&lt;/TD&gt;&lt;TD&gt;AvgTIY&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3/3/2022&lt;/TD&gt;&lt;TD&gt;ABC&lt;/TD&gt;&lt;TD&gt;188&lt;/TD&gt;&lt;TD&gt;979&lt;/TD&gt;&lt;TD&gt;67&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3/4/2022&lt;/TD&gt;&lt;TD&gt;ABC&lt;/TD&gt;&lt;TD&gt;43&lt;/TD&gt;&lt;TD&gt;679&lt;/TD&gt;&lt;TD&gt;47.03&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3/5/2022&lt;/TD&gt;&lt;TD&gt;ABC&lt;/TD&gt;&lt;TD&gt;132&lt;/TD&gt;&lt;TD&gt;1015&lt;/TD&gt;&lt;TD&gt;34.34&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3/6/2022&lt;/TD&gt;&lt;TD&gt;ABC&lt;/TD&gt;&lt;TD&gt;122&lt;/TD&gt;&lt;TD&gt;995&lt;/TD&gt;&lt;TD&gt;94.72&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3/7/2022&lt;/TD&gt;&lt;TD&gt;ABC&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;TD&gt;657&lt;/TD&gt;&lt;TD&gt;32.25&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Facility will be used as a Filter or Slicer so not needed in the plot itself.&lt;/P&gt;&lt;P&gt;My hypothesis is that AvgTIY is influenced by WFD and VisitCount.&lt;/P&gt;&lt;P&gt;Each Date should represent a single point in the plot.&lt;/P&gt;&lt;P&gt;x=WFD, y=VisitCount, size= AvgTIY.&amp;nbsp; After watching several videos, I have got to this point:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;# The following code to create a dataframe and remove duplicated rows is always executed and acts as a preamble for your script: 

# dataset &amp;lt;- data.frame(WFD, VisitCount, AvgTIY)
# dataset &amp;lt;- unique(dataset)

# Paste or type your script code here:
library(ggplot2)
ggplot(data=dataset, aes(x=VisitCount, 
                        y=WFD))
   geom_point(aes(size=AvgTIY), color= "Blue")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But my visual is empty.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Hoping someone can lend me the assistance I need to generate the plot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance and Best Regards,&lt;/P&gt;</description>
    <pubDate>Wed, 09 Mar 2022 15:22:20 GMT</pubDate>
    <dc:creator>rsbin</dc:creator>
    <dc:date>2022-03-09T15:22:20Z</dc:date>
    <item>
      <title>Help with R Script - First Timer</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Help-with-R-Script-First-Timer/m-p/2383820#M856437</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Looking for help from anyone experienced in R Scripts&lt;/P&gt;&lt;P&gt;First time trying to use the R Script Visual to create an x-y scatter plot.&lt;/P&gt;&lt;P&gt;I have the following table of sample data:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Facility&lt;/TD&gt;&lt;TD&gt;WFD&lt;/TD&gt;&lt;TD&gt;VisitCount&lt;/TD&gt;&lt;TD&gt;AvgTIY&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3/3/2022&lt;/TD&gt;&lt;TD&gt;ABC&lt;/TD&gt;&lt;TD&gt;188&lt;/TD&gt;&lt;TD&gt;979&lt;/TD&gt;&lt;TD&gt;67&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3/4/2022&lt;/TD&gt;&lt;TD&gt;ABC&lt;/TD&gt;&lt;TD&gt;43&lt;/TD&gt;&lt;TD&gt;679&lt;/TD&gt;&lt;TD&gt;47.03&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3/5/2022&lt;/TD&gt;&lt;TD&gt;ABC&lt;/TD&gt;&lt;TD&gt;132&lt;/TD&gt;&lt;TD&gt;1015&lt;/TD&gt;&lt;TD&gt;34.34&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3/6/2022&lt;/TD&gt;&lt;TD&gt;ABC&lt;/TD&gt;&lt;TD&gt;122&lt;/TD&gt;&lt;TD&gt;995&lt;/TD&gt;&lt;TD&gt;94.72&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3/7/2022&lt;/TD&gt;&lt;TD&gt;ABC&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;TD&gt;657&lt;/TD&gt;&lt;TD&gt;32.25&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Facility will be used as a Filter or Slicer so not needed in the plot itself.&lt;/P&gt;&lt;P&gt;My hypothesis is that AvgTIY is influenced by WFD and VisitCount.&lt;/P&gt;&lt;P&gt;Each Date should represent a single point in the plot.&lt;/P&gt;&lt;P&gt;x=WFD, y=VisitCount, size= AvgTIY.&amp;nbsp; After watching several videos, I have got to this point:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;# The following code to create a dataframe and remove duplicated rows is always executed and acts as a preamble for your script: 

# dataset &amp;lt;- data.frame(WFD, VisitCount, AvgTIY)
# dataset &amp;lt;- unique(dataset)

# Paste or type your script code here:
library(ggplot2)
ggplot(data=dataset, aes(x=VisitCount, 
                        y=WFD))
   geom_point(aes(size=AvgTIY), color= "Blue")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But my visual is empty.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Hoping someone can lend me the assistance I need to generate the plot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance and Best Regards,&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 15:22:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Help-with-R-Script-First-Timer/m-p/2383820#M856437</guid>
      <dc:creator>rsbin</dc:creator>
      <dc:date>2022-03-09T15:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help with R Script - First Timer</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Help-with-R-Script-First-Timer/m-p/2383904#M856470</link>
      <description>&lt;P&gt;After more research, I believe I found my issue.&lt;/P&gt;&lt;P&gt;Missed the "+" sign, which I now know is required in order for R to keep reading the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;# The following code to create a dataframe and remove duplicated rows is always executed and acts as a preamble for your script: 

# dataset &amp;lt;- data.frame(WFD, VisitCount, AvgTIY)
# dataset &amp;lt;- unique(dataset)

# Paste or type your script code here:
library(ggplot2)
ggplot(data=dataset, aes(x=VisitCount, 
                        y=WFD)) +
   geom_point(aes(size=AvgTIY), color= "Blue")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 16:09:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Help-with-R-Script-First-Timer/m-p/2383904#M856470</guid>
      <dc:creator>rsbin</dc:creator>
      <dc:date>2022-03-09T16:09:30Z</dc:date>
    </item>
  </channel>
</rss>

