base package used when arules is required. Specifying package doesn't work











up vote
5
down vote

favorite












I'm trying to write a single format file within the arules package, to load it in as a transaction afterwards for association rule mining. I can't use this function, since R keeps using the base::write function instead of the arules::write function.



arules::write(x = dfSingle,
file = "dfSingleFile",
format = "single",
quote = TRUE,
sep = ",")


Gives the following error message:



Error in base::write(x, file, ...) : 
unused arguments (format = "single", quote = TRUE)


When I loaded the arules package at the beginning of the session, it did say it masked the write function from base:



library(arules)
Loading required package: Matrix

Attaching package: ‘arules’
The following objects are masked from ‘package:base’: abbreviate, write


I've already tried installing the arules package again. I'm using R 3.5.1 within Rstudio Server (1.1.414).



Any help on this?










share|improve this question




























    up vote
    5
    down vote

    favorite












    I'm trying to write a single format file within the arules package, to load it in as a transaction afterwards for association rule mining. I can't use this function, since R keeps using the base::write function instead of the arules::write function.



    arules::write(x = dfSingle,
    file = "dfSingleFile",
    format = "single",
    quote = TRUE,
    sep = ",")


    Gives the following error message:



    Error in base::write(x, file, ...) : 
    unused arguments (format = "single", quote = TRUE)


    When I loaded the arules package at the beginning of the session, it did say it masked the write function from base:



    library(arules)
    Loading required package: Matrix

    Attaching package: ‘arules’
    The following objects are masked from ‘package:base’: abbreviate, write


    I've already tried installing the arules package again. I'm using R 3.5.1 within Rstudio Server (1.1.414).



    Any help on this?










    share|improve this question


























      up vote
      5
      down vote

      favorite









      up vote
      5
      down vote

      favorite











      I'm trying to write a single format file within the arules package, to load it in as a transaction afterwards for association rule mining. I can't use this function, since R keeps using the base::write function instead of the arules::write function.



      arules::write(x = dfSingle,
      file = "dfSingleFile",
      format = "single",
      quote = TRUE,
      sep = ",")


      Gives the following error message:



      Error in base::write(x, file, ...) : 
      unused arguments (format = "single", quote = TRUE)


      When I loaded the arules package at the beginning of the session, it did say it masked the write function from base:



      library(arules)
      Loading required package: Matrix

      Attaching package: ‘arules’
      The following objects are masked from ‘package:base’: abbreviate, write


      I've already tried installing the arules package again. I'm using R 3.5.1 within Rstudio Server (1.1.414).



      Any help on this?










      share|improve this question















      I'm trying to write a single format file within the arules package, to load it in as a transaction afterwards for association rule mining. I can't use this function, since R keeps using the base::write function instead of the arules::write function.



      arules::write(x = dfSingle,
      file = "dfSingleFile",
      format = "single",
      quote = TRUE,
      sep = ",")


      Gives the following error message:



      Error in base::write(x, file, ...) : 
      unused arguments (format = "single", quote = TRUE)


      When I loaded the arules package at the beginning of the session, it did say it masked the write function from base:



      library(arules)
      Loading required package: Matrix

      Attaching package: ‘arules’
      The following objects are masked from ‘package:base’: abbreviate, write


      I've already tried installing the arules package again. I'm using R 3.5.1 within Rstudio Server (1.1.414).



      Any help on this?







      r arules






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 7 at 8:11









      zx8754

      28.5k76394




      28.5k76394










      asked Nov 7 at 8:07









      Cnidders

      283




      283
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          2
          down vote



          accepted










          Check the class of dfSingle, if it is not "transactions" then it is passed to base::write, see example:



          library(arules)
          data(Epub)

          class(Epub)
          # [1] "transactions"
          # attr(,"package")
          # [1] "arules"
          arules::write(x = head(Epub),
          file = "test",
          format = "single",
          quote = TRUE,
          sep = ",")
          # no errors!

          class(mtcars)
          #[1] "data.frame"
          arules::write(x = mtcars,
          file = "test",
          format = "single",
          quote = TRUE,
          sep = ",")
          # Error in base::write(x, file, ...) :
          # unused arguments (format = "single", quote = TRUE)





          share|improve this answer





















            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',
            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%2f53185553%2fbase-package-used-when-arules-is-required-specifying-package-doesnt-work%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








            up vote
            2
            down vote



            accepted










            Check the class of dfSingle, if it is not "transactions" then it is passed to base::write, see example:



            library(arules)
            data(Epub)

            class(Epub)
            # [1] "transactions"
            # attr(,"package")
            # [1] "arules"
            arules::write(x = head(Epub),
            file = "test",
            format = "single",
            quote = TRUE,
            sep = ",")
            # no errors!

            class(mtcars)
            #[1] "data.frame"
            arules::write(x = mtcars,
            file = "test",
            format = "single",
            quote = TRUE,
            sep = ",")
            # Error in base::write(x, file, ...) :
            # unused arguments (format = "single", quote = TRUE)





            share|improve this answer

























              up vote
              2
              down vote



              accepted










              Check the class of dfSingle, if it is not "transactions" then it is passed to base::write, see example:



              library(arules)
              data(Epub)

              class(Epub)
              # [1] "transactions"
              # attr(,"package")
              # [1] "arules"
              arules::write(x = head(Epub),
              file = "test",
              format = "single",
              quote = TRUE,
              sep = ",")
              # no errors!

              class(mtcars)
              #[1] "data.frame"
              arules::write(x = mtcars,
              file = "test",
              format = "single",
              quote = TRUE,
              sep = ",")
              # Error in base::write(x, file, ...) :
              # unused arguments (format = "single", quote = TRUE)





              share|improve this answer























                up vote
                2
                down vote



                accepted







                up vote
                2
                down vote



                accepted






                Check the class of dfSingle, if it is not "transactions" then it is passed to base::write, see example:



                library(arules)
                data(Epub)

                class(Epub)
                # [1] "transactions"
                # attr(,"package")
                # [1] "arules"
                arules::write(x = head(Epub),
                file = "test",
                format = "single",
                quote = TRUE,
                sep = ",")
                # no errors!

                class(mtcars)
                #[1] "data.frame"
                arules::write(x = mtcars,
                file = "test",
                format = "single",
                quote = TRUE,
                sep = ",")
                # Error in base::write(x, file, ...) :
                # unused arguments (format = "single", quote = TRUE)





                share|improve this answer












                Check the class of dfSingle, if it is not "transactions" then it is passed to base::write, see example:



                library(arules)
                data(Epub)

                class(Epub)
                # [1] "transactions"
                # attr(,"package")
                # [1] "arules"
                arules::write(x = head(Epub),
                file = "test",
                format = "single",
                quote = TRUE,
                sep = ",")
                # no errors!

                class(mtcars)
                #[1] "data.frame"
                arules::write(x = mtcars,
                file = "test",
                format = "single",
                quote = TRUE,
                sep = ",")
                # Error in base::write(x, file, ...) :
                # unused arguments (format = "single", quote = TRUE)






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 7 at 8:28









                zx8754

                28.5k76394




                28.5k76394






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53185553%2fbase-package-used-when-arules-is-required-specifying-package-doesnt-work%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







                    這個網誌中的熱門文章

                    Tangent Lines Diagram Along Smooth Curve

                    Yusuf al-Mu'taman ibn Hud

                    Zucchini