<?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: Schedule view in R Script Showcase</title>
    <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/82111#M73</link>
    <description>&lt;P&gt;This is great, exactly what I was looking for. I am quite new tto R, but was wondering......using the below script:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;## Show schedule of&amp;nbsp;projects by start / end date&lt;BR /&gt;#&lt;/P&gt;&lt;P&gt;library(ggplot2) # Visualization&lt;/P&gt;&lt;P&gt;# Convert timestamp to POSIXct.&amp;nbsp;&lt;FONT color="#FF0000"&gt;What do I do here to make the x-axis format to show yyyy/mm/dd? or alternatively mmm-yy?&lt;/FONT&gt;&lt;BR /&gt;dataset$From&amp;lt;-as.POSIXct(dataset$From,format="%Y-%m-%dT%H:%M:%OS")&lt;BR /&gt;dataset$To&amp;lt;-as.POSIXct(dataset$To,format="%Y-%m-%dT%H:%M:%OS")&lt;/P&gt;&lt;P&gt;ggplot(dataset,aes(x=datetime_start, y=dataset$Room, color=Person)) +&lt;BR /&gt;geom_segment(aes(x=From,xend=To,yend=dataset$Room),size=15) +&lt;BR /&gt;scale_colour_discrete(guide=guide_legend(override.aes=list(size=10))) +&lt;BR /&gt;ggtitle("Room reservations for building X") + xlab("") + ylab("") + theme_bw()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again and keep up the good work!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Llewellyn&lt;/P&gt;</description>
    <pubDate>Tue, 25 Oct 2016 14:07:16 GMT</pubDate>
    <dc:creator>PolymathConsult</dc:creator>
    <dc:date>2016-10-25T14:07:16Z</dc:date>
    <item>
      <title>Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/69026#M43</link>
      <description>&lt;P&gt;&lt;STRONG&gt;&lt;img&gt;﻿&lt;/img&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Description&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV&gt;A relatively simple visualization to show start-stop of events at locations. Can be roomscheduling but also a production process with specific states at a given time. Although it is only a few lines of R I've used it several times and think it is worth sharing!&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;STRONG&gt;Prerequisites (The sample .pbix files will not work without these prerequites completed)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1. Install R Engine&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Power BI Desktop does not include, deploy or install the R engine. To run R scripts in Power BI Desktop, you must separately install&lt;/SPAN&gt;R&lt;SPAN&gt; on your local computer. You can download and install &lt;/SPAN&gt;R&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;SPAN&gt;for free from many locations, including the &lt;/SPAN&gt;&lt;A title="" href="https://mran.revolutionanalytics.com/download/" target="_blank" rel="nofollow noopener noreferrer noopener noreferrer noopener noreferrer"&gt;Revolution Open download page&lt;/A&gt;&lt;SPAN&gt;, and the &lt;/SPAN&gt;&lt;A title="" href="https://cran.r-project.org/bin/windows/base/" target="_blank" rel="nofollow noopener noreferrer noopener noreferrer noopener noreferrer"&gt;CRAN Repository&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Install the required R packages.&lt;/P&gt;&lt;P&gt;Download the R script attached to this message and run it to install all required packages on your local machine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Required&amp;nbsp;R packages:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ggplot2&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Tested on:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;CRAN 3.3.1, MRO 3.3.0&lt;SPAN&gt;, powerbi.com&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2016 10:20:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/69026#M43</guid>
      <dc:creator>fathomson</dc:creator>
      <dc:date>2016-09-16T10:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/70695#M53</link>
      <description>&lt;P&gt;There doesnt appear to be any R packages attached to this topic?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2016 02:15:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/70695#M53</guid>
      <dc:creator>mike_honey</dc:creator>
      <dc:date>2016-09-22T02:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/72372#M61</link>
      <description>&lt;P&gt;Hi Mike,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The R code is inside the powerbi dashboard file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2016 09:41:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/72372#M61</guid>
      <dc:creator>fathomson</dc:creator>
      <dc:date>2016-09-27T09:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/82111#M73</link>
      <description>&lt;P&gt;This is great, exactly what I was looking for. I am quite new tto R, but was wondering......using the below script:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;## Show schedule of&amp;nbsp;projects by start / end date&lt;BR /&gt;#&lt;/P&gt;&lt;P&gt;library(ggplot2) # Visualization&lt;/P&gt;&lt;P&gt;# Convert timestamp to POSIXct.&amp;nbsp;&lt;FONT color="#FF0000"&gt;What do I do here to make the x-axis format to show yyyy/mm/dd? or alternatively mmm-yy?&lt;/FONT&gt;&lt;BR /&gt;dataset$From&amp;lt;-as.POSIXct(dataset$From,format="%Y-%m-%dT%H:%M:%OS")&lt;BR /&gt;dataset$To&amp;lt;-as.POSIXct(dataset$To,format="%Y-%m-%dT%H:%M:%OS")&lt;/P&gt;&lt;P&gt;ggplot(dataset,aes(x=datetime_start, y=dataset$Room, color=Person)) +&lt;BR /&gt;geom_segment(aes(x=From,xend=To,yend=dataset$Room),size=15) +&lt;BR /&gt;scale_colour_discrete(guide=guide_legend(override.aes=list(size=10))) +&lt;BR /&gt;ggtitle("Room reservations for building X") + xlab("") + ylab("") + theme_bw()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again and keep up the good work!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Llewellyn&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2016 14:07:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/82111#M73</guid>
      <dc:creator>PolymathConsult</dc:creator>
      <dc:date>2016-10-25T14:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/83329#M76</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="11409" data-lia-user-login="PolymathConsult" class="lia-mention lia-mention-user"&gt;PolymathConsult﻿&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Try adding a datetime scale similar to below:&lt;/P&gt;&lt;PRE&gt;scale_x_datetime(breaks = date_breaks("1 month"), labels=date_format("%d/%m/%Y"))&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;You may also want to turn the date on the X axis for easier reading&lt;/P&gt;&lt;PRE&gt;theme(axis.text.x = element_text(angle = 90))&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;P.S. You'll need to load &lt;STRONG&gt;library(scales)&lt;/STRONG&gt; to use the scale_x_datetime function...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2016 03:24:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/83329#M76</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-28T03:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/92617#M93</link>
      <description>&lt;P&gt;Hi Frank,&lt;/P&gt;
&lt;P&gt;Thanks for your&amp;nbsp;new R-showcases.&amp;nbsp;They are very useful. &amp;nbsp;If you consider to convert some of your R-visuals to R-powered-custom visuals, out team will be happy to assist you.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The visibility of R-powered custom visuals is greater and it is not limited for R-users.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2016 10:36:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/92617#M93</guid>
      <dc:creator>boefraty</dc:creator>
      <dc:date>2016-11-22T10:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/211630#M201</link>
      <description>&lt;P&gt;Hey, I'm so green with R, I was wondering if you might be able to give me a head start. Literally, I started looking at it today after I saw your post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would you adapt this to a production process? That's what I want to do.&lt;/P&gt;&lt;P&gt;Say products "A" and "B" entering various different stages (1, 2, 3) of the development process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any head start would be really appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a side note, it looks like your data model in PBI is really simple! I like that! I would totally build a simple table based off of referenced queries.&lt;/P&gt;&lt;P&gt;And you're just using a few lines of R to extract that and create the visual. It seems very cool!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2017 23:59:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/211630#M201</guid>
      <dc:creator>jmpace</dc:creator>
      <dc:date>2017-07-13T23:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/280218#M222</link>
      <description>&lt;P&gt;Good morning!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Congrats for the great job. :-)&lt;/P&gt;&lt;P&gt;It is very useful for me.&lt;/P&gt;&lt;P&gt;One question: where is defined the variable &lt;STRONG&gt;datetime_start&lt;/STRONG&gt;?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ggplot(dataset,aes(x=&lt;STRONG&gt;datetime_start&lt;/STRONG&gt;, y=dataset$Room, color=Person)) +&lt;BR /&gt;&amp;nbsp; geom_segment(aes(x=From,xend=To,yend=dataset$Room),size=15) +&lt;BR /&gt;&amp;nbsp; scale_colour_discrete(guide=guide_legend(override.aes=list(size=10))) +&lt;BR /&gt;ggtitle("Room reservations for building X") + xlab("") + ylab("") + theme_bw()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your time! :-)&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2017 08:20:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/280218#M222</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-17T08:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/282885#M224</link>
      <description>&lt;P&gt;This is exactly what I'd like to use, but I want to define limits to ensure a whole day is shown, even if the schedule only has 1 item half an hour long.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have any ideas on dynamically changing the scale? I'm currently using it with a Calendar visual allowing you to select days, which means it could be any day, so it needs a limit for x hours in a variable date :/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another possible option (not ideal at all) is to add a placeholder for every day that is 24 hours long!&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2017 14:39:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/282885#M224</guid>
      <dc:creator>C_Houghton</dc:creator>
      <dc:date>2017-10-19T14:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/286606#M225</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="35992" data-lia-user-login="jmpace" class="lia-mention lia-mention-user"&gt;jmpace&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you get any help with your project? Sorry for late response.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please contact me if you still need any help with it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The developer of this visual&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="14225" data-lia-user-login="fathomson" class="lia-mention lia-mention-user"&gt;fathomson&lt;/a&gt;&amp;nbsp;did an excelent job converting this R visual to custom visual.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which is still available &lt;A href="https://github.com/fathomson/PowerBI-RVisuals/tree/master/ScheduleView/scheduleView" target="_self"&gt;here&lt;/A&gt;. And I hope one day will be avaialble in AppSource.&amp;nbsp; &amp;nbsp;BTW, please check if &lt;A href="https://appsource.microsoft.com/en-us/product/power-bi-visuals/WA104380765?src=office&amp;amp;tab=Overview" target="_self"&gt;Gantt chart &lt;/A&gt;can be useful for you.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Oct 2017 11:51:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/286606#M225</guid>
      <dc:creator>boefraty</dc:creator>
      <dc:date>2017-10-22T11:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/286621#M226</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry for delay in reponse. Do you still need help to your project?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To your question&amp;nbsp;datetime_start is a typo in code. Luckily it was ignored by ggplot because aes is replaced.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Oct 2017 12:08:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/286621#M226</guid>
      <dc:creator>boefraty</dc:creator>
      <dc:date>2017-10-22T12:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/286627#M227</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="36534" data-lia-user-login="C_Houghton" class="lia-mention lia-mention-user"&gt;C_Houghton&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You certainly can use ggplot functionality to get the required feature.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BTW,&amp;nbsp;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="14225" data-lia-user-login="fathomson" class="lia-mention lia-mention-user"&gt;fathomson&lt;/a&gt;&amp;nbsp;implmented R Custom Visual on the basis of this show case.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is still available &lt;A href="https://github.com/fathomson/PowerBI-RVisuals/tree/master/ScheduleView/scheduleView" target="_self"&gt;here&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As a quick and dirty "hack" to your problem you may try to add two zero-length resources at the beginning and the end of the day.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Oct 2017 12:15:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/286627#M227</guid>
      <dc:creator>boefraty</dc:creator>
      <dc:date>2017-10-22T12:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/287668#M228</link>
      <description>&lt;P&gt;Thanks for your reply! That would be absolutely perfect, but i'm getting errors:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Feedback Type:&lt;BR /&gt;Frown (Error)&lt;/P&gt;&lt;P&gt;Timestamp:&lt;BR /&gt;2017-10-23T07:56:28.6198256Z&lt;/P&gt;&lt;P&gt;Local Time:&lt;BR /&gt;2017-10-23T08:56:28.6198256+01:00&lt;/P&gt;&lt;P&gt;Product Version:&lt;BR /&gt;2.47.4766.801 (PBIDesktop) (x64)&lt;/P&gt;&lt;P&gt;Release:&lt;BR /&gt;June 2017&lt;/P&gt;&lt;P&gt;IE Version:&lt;BR /&gt;11.608.15063.0&lt;/P&gt;&lt;P&gt;OS Version:&lt;BR /&gt;Microsoft Windows NT 10.0.15063.0 (x64 en-GB)&lt;/P&gt;&lt;P&gt;CLR Version:&lt;BR /&gt;4.6.2. or later [Release Number = 460798]&lt;/P&gt;&lt;P&gt;Workbook Package Info:&lt;BR /&gt;1* - en-US, Query Groups: 0, fastCombine: Disabled, runBackgroundAnalysis: True.&lt;/P&gt;&lt;P&gt;Peak Working Set:&lt;BR /&gt;386 MB&lt;/P&gt;&lt;P&gt;Private Memory:&lt;BR /&gt;271 MB&lt;/P&gt;&lt;P&gt;Peak Virtual Memory:&lt;BR /&gt;33.8 GB&lt;/P&gt;&lt;P&gt;Error Message:&lt;BR /&gt;R script error.&lt;BR /&gt;Loading required package: ggplot2&lt;BR /&gt;Loading required package: grid&lt;BR /&gt;Loading required package: gridExtra&lt;BR /&gt;Warning message:&lt;BR /&gt;package 'gridExtra' was built under R version 3.4.2&lt;BR /&gt;Loading required package: wesanderson&lt;BR /&gt;Warning message:&lt;BR /&gt;package 'wesanderson' was built under R version 3.4.2&lt;BR /&gt;Loading required package: RColorBrewer&lt;BR /&gt;Loading required package: dplyr&lt;BR /&gt;Warning messages:&lt;BR /&gt;1: In library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :&lt;BR /&gt;there is no package called 'dplyr'&lt;BR /&gt;2: In libraryRequireInstall("dplyr") :&lt;BR /&gt;*** The package: 'dplyr' was not installed ***&lt;BR /&gt;Error in `levels&amp;lt;-`(`*tmp*`, value = if (nl == nL) as.character(labels) else paste0(labels, :&lt;BR /&gt;factor level [2] is duplicated&lt;BR /&gt;Calls: sortDataset -&amp;gt; factor&lt;BR /&gt;Execution halted&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;User ID:&lt;BR /&gt;db15c5fa-a129-4ae0-ba08-f5149b97bbcb&lt;/P&gt;&lt;P&gt;Session ID:&lt;BR /&gt;89517680-55f3-4784-b47f-0655edbd950b&lt;/P&gt;&lt;P&gt;Telemetry Enabled:&lt;BR /&gt;True&lt;/P&gt;&lt;P&gt;Model Default Mode:&lt;BR /&gt;Import&lt;/P&gt;&lt;P&gt;Snapshot Trace Logs:&lt;BR /&gt;C:\Users\ch1\AppData\Local\Microsoft\Power BI Desktop\FrownSnapShot293130851.zip&lt;/P&gt;&lt;P&gt;Performance Trace Logs:&lt;BR /&gt;C:\Users\ch1\AppData\Local\Microsoft\Power BI Desktop\PerformanceTraces.zip&lt;/P&gt;&lt;P&gt;Enabled Preview Features:&lt;BR /&gt;PBI_Snowflake&lt;BR /&gt;PBI_shapeMapVisualEnabled&lt;BR /&gt;PBI_EnableReportTheme&lt;BR /&gt;PBI_allowBiDiCrossFilterInDirectQuery&lt;BR /&gt;PBI_pivotTableVisualEnabled&lt;BR /&gt;PBI_numericSlicerEnabled&lt;BR /&gt;PBI_daxTemplatesEnabled&lt;BR /&gt;PBI_relativeDateSlicer&lt;BR /&gt;CustomConnectors&lt;/P&gt;&lt;P&gt;Disabled Preview Features:&lt;BR /&gt;PBI_SpanishLinguisticsEnabled&lt;BR /&gt;PBI_PbiServiceLiveConnect&lt;/P&gt;&lt;P&gt;Disabled DirectQuery Options:&lt;BR /&gt;PBI_DirectQuery_Unrestricted&lt;/P&gt;&lt;P&gt;Cloud:&lt;BR /&gt;GlobalCloud&lt;/P&gt;&lt;P&gt;Time:&lt;BR /&gt;Mon Oct 23 2017 08:55:49 GMT+0100 (GMT Summer Time)&lt;/P&gt;&lt;P&gt;Client Error Code:&lt;BR /&gt;ServiceErrorToClientError&lt;/P&gt;&lt;P&gt;Error Details:&lt;BR /&gt;R script error.&lt;BR /&gt;Loading required package: ggplot2&lt;BR /&gt;Loading required package: grid&lt;BR /&gt;Loading required package: gridExtra&lt;BR /&gt;Warning message:&lt;BR /&gt;package 'gridExtra' was built under R version 3.4.2&lt;BR /&gt;Loading required package: wesanderson&lt;BR /&gt;Warning message:&lt;BR /&gt;package 'wesanderson' was built under R version 3.4.2&lt;BR /&gt;Loading required package: RColorBrewer&lt;BR /&gt;Loading required package: dplyr&lt;BR /&gt;Warning messages:&lt;BR /&gt;1: In library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :&lt;BR /&gt;there is no package called 'dplyr'&lt;BR /&gt;2: In libraryRequireInstall("dplyr") :&lt;BR /&gt;*** The package: 'dplyr' was not installed ***&lt;BR /&gt;Error in `levels&amp;lt;-`(`*tmp*`, value = if (nl == nL) as.character(labels) else paste0(labels, :&lt;BR /&gt;factor level [2] is duplicated&lt;BR /&gt;Calls: sortDataset -&amp;gt; factor&lt;BR /&gt;Execution halted&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Stack Trace:&lt;BR /&gt;Microsoft.PowerBI.ExploreServiceCommon.ScriptHandlerException: R script error.&lt;BR /&gt;Loading required package: ggplot2&lt;BR /&gt;Loading required package: grid&lt;BR /&gt;Loading required package: gridExtra&lt;BR /&gt;Warning message:&lt;BR /&gt;package 'gridExtra' was built under R version 3.4.2&lt;BR /&gt;Loading required package: wesanderson&lt;BR /&gt;Warning message:&lt;BR /&gt;package 'wesanderson' was built under R version 3.4.2&lt;BR /&gt;Loading required package: RColorBrewer&lt;BR /&gt;Loading required package: dplyr&lt;BR /&gt;Warning messages:&lt;BR /&gt;1: In library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :&lt;BR /&gt;there is no package called 'dplyr'&lt;BR /&gt;2: In libraryRequireInstall("dplyr") :&lt;BR /&gt;*** The package: 'dplyr' was not installed ***&lt;BR /&gt;Error in `levels&amp;lt;-`(`*tmp*`, value = if (nl == nL) as.character(labels) else paste0(labels, :&lt;BR /&gt;factor level [2] is duplicated&lt;BR /&gt;Calls: sortDataset -&amp;gt; factor&lt;BR /&gt;Execution halted&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any insights off the bat? Or I can follow it up with the creator.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 07:58:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/287668#M228</guid>
      <dc:creator>C_Houghton</dc:creator>
      <dc:date>2017-10-23T07:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/287797#M229</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="36534" data-lia-user-login="C_Houghton" class="lia-mention lia-mention-user"&gt;C_Houghton&lt;/a&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;*** The package: 'dplyr' was not installed ***&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Try to install it manually from RStudio&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;gt; install.packages("dplyr")&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 09:43:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/287797#M229</guid>
      <dc:creator>boefraty</dc:creator>
      <dc:date>2017-10-23T09:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/287821#M230</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I installed that package - looks slightly better:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error Details:&lt;/P&gt;&lt;P&gt;R script error.&lt;/P&gt;&lt;P&gt;Loading required package: ggplot2&lt;/P&gt;&lt;P&gt;Loading required package: grid&lt;/P&gt;&lt;P&gt;Loading required package: gridExtra&lt;/P&gt;&lt;P&gt;Warning message:&lt;/P&gt;&lt;P&gt;package 'gridExtra' was built under R version 3.4.2&lt;/P&gt;&lt;P&gt;Loading required package: wesanderson&lt;/P&gt;&lt;P&gt;Warning message:&lt;/P&gt;&lt;P&gt;package 'wesanderson' was built under R version 3.4.2&lt;/P&gt;&lt;P&gt;Loading required package: RColorBrewer&lt;/P&gt;&lt;P&gt;Loading required package: dplyr&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attaching package: 'dplyr'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following object is masked from 'package:gridExtra':&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; combine&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following objects are masked from 'package:stats':&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; filter, lag&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following objects are masked from 'package:base':&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; intersect, setdiff, setequal, union&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error in `levels&amp;lt;-`(`*tmp*`, value = if (nl == nL) as.character(labels) else paste0(labels,&amp;nbsp; :&lt;/P&gt;&lt;P&gt;&amp;nbsp; factor level [2] is duplicated&lt;/P&gt;&lt;P&gt;Calls: sortDataset -&amp;gt; factor&lt;/P&gt;&lt;P&gt;Execution halted&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 09:57:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/287821#M230</guid>
      <dc:creator>C_Houghton</dc:creator>
      <dc:date>2017-10-23T09:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule view</title>
      <link>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/322606#M237</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Make sure Dates are not hierarchies and no summary applied on other fields.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You welcome to send me the PBIX and I'll have a look .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;boefraty&amp;nbsp;@&amp;nbsp; microsoft&amp;nbsp; .&amp;nbsp; com&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 07:54:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/R-Script-Showcase/Schedule-view/m-p/322606#M237</guid>
      <dc:creator>boefraty</dc:creator>
      <dc:date>2017-12-13T07:54:48Z</dc:date>
    </item>
  </channel>
</rss>

