Can't use geom_col to plot POSIXct object?












0















I have the dataset :



vec=c("1960-01-01 06:39:00","1960-01-01 05:10:00","1960-01-01 04:30:00","1960-01-01 02:53:00")
vec=as.POSIXct(vec, origin="1960-01-01", tz = "GMT")
dum=data.frame(v1=c("a","b","c","d"),v2=vec)


If I try to built a plot with a line, it works :



ggplot(dum, aes(y=v2, x=v1, group=1)) + 
geom_line(colour="#59AA46")


enter image description here



But what I need is to built a barplot, so I use the following code which does not work so well :



ggplot(dum, aes(y=v2, x=v1)) + 
geom_col(fill="#59AA46")


enter image description here



What am I doing wrong ?










share|improve this question





























    0















    I have the dataset :



    vec=c("1960-01-01 06:39:00","1960-01-01 05:10:00","1960-01-01 04:30:00","1960-01-01 02:53:00")
    vec=as.POSIXct(vec, origin="1960-01-01", tz = "GMT")
    dum=data.frame(v1=c("a","b","c","d"),v2=vec)


    If I try to built a plot with a line, it works :



    ggplot(dum, aes(y=v2, x=v1, group=1)) + 
    geom_line(colour="#59AA46")


    enter image description here



    But what I need is to built a barplot, so I use the following code which does not work so well :



    ggplot(dum, aes(y=v2, x=v1)) + 
    geom_col(fill="#59AA46")


    enter image description here



    What am I doing wrong ?










    share|improve this question



























      0












      0








      0








      I have the dataset :



      vec=c("1960-01-01 06:39:00","1960-01-01 05:10:00","1960-01-01 04:30:00","1960-01-01 02:53:00")
      vec=as.POSIXct(vec, origin="1960-01-01", tz = "GMT")
      dum=data.frame(v1=c("a","b","c","d"),v2=vec)


      If I try to built a plot with a line, it works :



      ggplot(dum, aes(y=v2, x=v1, group=1)) + 
      geom_line(colour="#59AA46")


      enter image description here



      But what I need is to built a barplot, so I use the following code which does not work so well :



      ggplot(dum, aes(y=v2, x=v1)) + 
      geom_col(fill="#59AA46")


      enter image description here



      What am I doing wrong ?










      share|improve this question
















      I have the dataset :



      vec=c("1960-01-01 06:39:00","1960-01-01 05:10:00","1960-01-01 04:30:00","1960-01-01 02:53:00")
      vec=as.POSIXct(vec, origin="1960-01-01", tz = "GMT")
      dum=data.frame(v1=c("a","b","c","d"),v2=vec)


      If I try to built a plot with a line, it works :



      ggplot(dum, aes(y=v2, x=v1, group=1)) + 
      geom_line(colour="#59AA46")


      enter image description here



      But what I need is to built a barplot, so I use the following code which does not work so well :



      ggplot(dum, aes(y=v2, x=v1)) + 
      geom_col(fill="#59AA46")


      enter image description here



      What am I doing wrong ?







      r ggplot2 geom-col






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 2 at 15:32









      Tjebo

      2,5651531




      2,5651531










      asked Jan 2 at 13:06









      DoeDoe

      32




      32
























          1 Answer
          1






          active

          oldest

          votes


















          3














          The thing is ggplot will use unix time for the axis (which is by default the number of seconds that have elapsed since January 1, 1970 (midnight UTC/GMT)).



          In your data the date goes back to the year 1960 which means values on the y-axis are not only negative, but they are also all below 13e+6 (number of seconds in a year).



          Since geom_line or geom_point will only take these values into consideration, this fact will not cause any issue when plotting, however geom_col or geom_bar will code for each bar the start and end value and in your case it will always start at point 0 (i.e. 1970-01-01 00:00:00) and end at some point sligtly lower than 31e+6 (i.e. 1960-01-01 H:M:S).



          One workaround you can do is to use unix time and the play around with the layout until you get the output you want



          Here is what I mean:



          # define the y-axis limits 
          start_lim <- as.integer(as.POSIXct("1960-01-01 00:00:00", tz = "GMT"))
          end_lim <- as.integer(as.POSIXct("1960-01-02 00:00:00", tz = "GMT"))

          # plot
          ggplot(dum, aes(x=v1, y=as.integer(v2))) + # use v2 as integer
          geom_col(fill="#59AA46") +
          coord_cartesian(ylim = c(start_lim, end_lim)) + # set the y limits
          scale_y_reverse(breaks = as.integer(vec), # reverse the y axis
          labels = vec) + # set the labels and ticks as wanted
          ylab('Date-time') # set the axis title


          I eventually got this :



          enter image description here






          share|improve this answer





















          • 1





            Thank you for your answer ! Thanks to your explanation, I simply chose to change my dataset so that my data have a different date (origin="1970-01-01").

            – Doe
            Jan 2 at 15:51











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54006916%2fcant-use-geom-col-to-plot-posixct-object%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          3














          The thing is ggplot will use unix time for the axis (which is by default the number of seconds that have elapsed since January 1, 1970 (midnight UTC/GMT)).



          In your data the date goes back to the year 1960 which means values on the y-axis are not only negative, but they are also all below 13e+6 (number of seconds in a year).



          Since geom_line or geom_point will only take these values into consideration, this fact will not cause any issue when plotting, however geom_col or geom_bar will code for each bar the start and end value and in your case it will always start at point 0 (i.e. 1970-01-01 00:00:00) and end at some point sligtly lower than 31e+6 (i.e. 1960-01-01 H:M:S).



          One workaround you can do is to use unix time and the play around with the layout until you get the output you want



          Here is what I mean:



          # define the y-axis limits 
          start_lim <- as.integer(as.POSIXct("1960-01-01 00:00:00", tz = "GMT"))
          end_lim <- as.integer(as.POSIXct("1960-01-02 00:00:00", tz = "GMT"))

          # plot
          ggplot(dum, aes(x=v1, y=as.integer(v2))) + # use v2 as integer
          geom_col(fill="#59AA46") +
          coord_cartesian(ylim = c(start_lim, end_lim)) + # set the y limits
          scale_y_reverse(breaks = as.integer(vec), # reverse the y axis
          labels = vec) + # set the labels and ticks as wanted
          ylab('Date-time') # set the axis title


          I eventually got this :



          enter image description here






          share|improve this answer





















          • 1





            Thank you for your answer ! Thanks to your explanation, I simply chose to change my dataset so that my data have a different date (origin="1970-01-01").

            – Doe
            Jan 2 at 15:51
















          3














          The thing is ggplot will use unix time for the axis (which is by default the number of seconds that have elapsed since January 1, 1970 (midnight UTC/GMT)).



          In your data the date goes back to the year 1960 which means values on the y-axis are not only negative, but they are also all below 13e+6 (number of seconds in a year).



          Since geom_line or geom_point will only take these values into consideration, this fact will not cause any issue when plotting, however geom_col or geom_bar will code for each bar the start and end value and in your case it will always start at point 0 (i.e. 1970-01-01 00:00:00) and end at some point sligtly lower than 31e+6 (i.e. 1960-01-01 H:M:S).



          One workaround you can do is to use unix time and the play around with the layout until you get the output you want



          Here is what I mean:



          # define the y-axis limits 
          start_lim <- as.integer(as.POSIXct("1960-01-01 00:00:00", tz = "GMT"))
          end_lim <- as.integer(as.POSIXct("1960-01-02 00:00:00", tz = "GMT"))

          # plot
          ggplot(dum, aes(x=v1, y=as.integer(v2))) + # use v2 as integer
          geom_col(fill="#59AA46") +
          coord_cartesian(ylim = c(start_lim, end_lim)) + # set the y limits
          scale_y_reverse(breaks = as.integer(vec), # reverse the y axis
          labels = vec) + # set the labels and ticks as wanted
          ylab('Date-time') # set the axis title


          I eventually got this :



          enter image description here






          share|improve this answer





















          • 1





            Thank you for your answer ! Thanks to your explanation, I simply chose to change my dataset so that my data have a different date (origin="1970-01-01").

            – Doe
            Jan 2 at 15:51














          3












          3








          3







          The thing is ggplot will use unix time for the axis (which is by default the number of seconds that have elapsed since January 1, 1970 (midnight UTC/GMT)).



          In your data the date goes back to the year 1960 which means values on the y-axis are not only negative, but they are also all below 13e+6 (number of seconds in a year).



          Since geom_line or geom_point will only take these values into consideration, this fact will not cause any issue when plotting, however geom_col or geom_bar will code for each bar the start and end value and in your case it will always start at point 0 (i.e. 1970-01-01 00:00:00) and end at some point sligtly lower than 31e+6 (i.e. 1960-01-01 H:M:S).



          One workaround you can do is to use unix time and the play around with the layout until you get the output you want



          Here is what I mean:



          # define the y-axis limits 
          start_lim <- as.integer(as.POSIXct("1960-01-01 00:00:00", tz = "GMT"))
          end_lim <- as.integer(as.POSIXct("1960-01-02 00:00:00", tz = "GMT"))

          # plot
          ggplot(dum, aes(x=v1, y=as.integer(v2))) + # use v2 as integer
          geom_col(fill="#59AA46") +
          coord_cartesian(ylim = c(start_lim, end_lim)) + # set the y limits
          scale_y_reverse(breaks = as.integer(vec), # reverse the y axis
          labels = vec) + # set the labels and ticks as wanted
          ylab('Date-time') # set the axis title


          I eventually got this :



          enter image description here






          share|improve this answer















          The thing is ggplot will use unix time for the axis (which is by default the number of seconds that have elapsed since January 1, 1970 (midnight UTC/GMT)).



          In your data the date goes back to the year 1960 which means values on the y-axis are not only negative, but they are also all below 13e+6 (number of seconds in a year).



          Since geom_line or geom_point will only take these values into consideration, this fact will not cause any issue when plotting, however geom_col or geom_bar will code for each bar the start and end value and in your case it will always start at point 0 (i.e. 1970-01-01 00:00:00) and end at some point sligtly lower than 31e+6 (i.e. 1960-01-01 H:M:S).



          One workaround you can do is to use unix time and the play around with the layout until you get the output you want



          Here is what I mean:



          # define the y-axis limits 
          start_lim <- as.integer(as.POSIXct("1960-01-01 00:00:00", tz = "GMT"))
          end_lim <- as.integer(as.POSIXct("1960-01-02 00:00:00", tz = "GMT"))

          # plot
          ggplot(dum, aes(x=v1, y=as.integer(v2))) + # use v2 as integer
          geom_col(fill="#59AA46") +
          coord_cartesian(ylim = c(start_lim, end_lim)) + # set the y limits
          scale_y_reverse(breaks = as.integer(vec), # reverse the y axis
          labels = vec) + # set the labels and ticks as wanted
          ylab('Date-time') # set the axis title


          I eventually got this :



          enter image description here







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jan 2 at 15:52

























          answered Jan 2 at 15:31









          DS_UNIDS_UNI

          1,3921613




          1,3921613








          • 1





            Thank you for your answer ! Thanks to your explanation, I simply chose to change my dataset so that my data have a different date (origin="1970-01-01").

            – Doe
            Jan 2 at 15:51














          • 1





            Thank you for your answer ! Thanks to your explanation, I simply chose to change my dataset so that my data have a different date (origin="1970-01-01").

            – Doe
            Jan 2 at 15:51








          1




          1





          Thank you for your answer ! Thanks to your explanation, I simply chose to change my dataset so that my data have a different date (origin="1970-01-01").

          – Doe
          Jan 2 at 15:51





          Thank you for your answer ! Thanks to your explanation, I simply chose to change my dataset so that my data have a different date (origin="1970-01-01").

          – Doe
          Jan 2 at 15:51




















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54006916%2fcant-use-geom-col-to-plot-posixct-object%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          MongoDB - Not Authorized To Execute Command

          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

          How to fix TextFormField cause rebuild widget in Flutter