Typing table into R












0















I need help to type this table into R in order to do some analysis,



[1]



This is what I have done.



y=c(90,74,81,83,77,81,88,73, 98,72,87,85,99,79,87,80, 93,78,85,80,78,80,82,70, 95,76,83,86,90,75,84,80)
Replicate=rep(c("I","II"), each=16)


But then I don't know how to put in those a, b, interaction terms.










share|improve this question

























  • check with ftable

    – Wen-Ben
    Nov 26 '18 at 2:22






  • 1





    so I just put in Treatment =rep(c("(1)","a","b","ab","c","ac","bc","abc","d","ad","bd","abd","cd","acd","bcd","abcd"), times=2) ?

    – Math Avengers
    Nov 26 '18 at 2:45
















0















I need help to type this table into R in order to do some analysis,



[1]



This is what I have done.



y=c(90,74,81,83,77,81,88,73, 98,72,87,85,99,79,87,80, 93,78,85,80,78,80,82,70, 95,76,83,86,90,75,84,80)
Replicate=rep(c("I","II"), each=16)


But then I don't know how to put in those a, b, interaction terms.










share|improve this question

























  • check with ftable

    – Wen-Ben
    Nov 26 '18 at 2:22






  • 1





    so I just put in Treatment =rep(c("(1)","a","b","ab","c","ac","bc","abc","d","ad","bd","abd","cd","acd","bcd","abcd"), times=2) ?

    – Math Avengers
    Nov 26 '18 at 2:45














0












0








0








I need help to type this table into R in order to do some analysis,



[1]



This is what I have done.



y=c(90,74,81,83,77,81,88,73, 98,72,87,85,99,79,87,80, 93,78,85,80,78,80,82,70, 95,76,83,86,90,75,84,80)
Replicate=rep(c("I","II"), each=16)


But then I don't know how to put in those a, b, interaction terms.










share|improve this question
















I need help to type this table into R in order to do some analysis,



[1]



This is what I have done.



y=c(90,74,81,83,77,81,88,73, 98,72,87,85,99,79,87,80, 93,78,85,80,78,80,82,70, 95,76,83,86,90,75,84,80)
Replicate=rep(c("I","II"), each=16)


But then I don't know how to put in those a, b, interaction terms.







r






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 26 '18 at 7:38









Andrei Suvorkov

4,1854930




4,1854930










asked Nov 26 '18 at 2:19









Math AvengersMath Avengers

516




516













  • check with ftable

    – Wen-Ben
    Nov 26 '18 at 2:22






  • 1





    so I just put in Treatment =rep(c("(1)","a","b","ab","c","ac","bc","abc","d","ad","bd","abd","cd","acd","bcd","abcd"), times=2) ?

    – Math Avengers
    Nov 26 '18 at 2:45



















  • check with ftable

    – Wen-Ben
    Nov 26 '18 at 2:22






  • 1





    so I just put in Treatment =rep(c("(1)","a","b","ab","c","ac","bc","abc","d","ad","bd","abd","cd","acd","bcd","abcd"), times=2) ?

    – Math Avengers
    Nov 26 '18 at 2:45

















check with ftable

– Wen-Ben
Nov 26 '18 at 2:22





check with ftable

– Wen-Ben
Nov 26 '18 at 2:22




1




1





so I just put in Treatment =rep(c("(1)","a","b","ab","c","ac","bc","abc","d","ad","bd","abd","cd","acd","bcd","abcd"), times=2) ?

– Math Avengers
Nov 26 '18 at 2:45





so I just put in Treatment =rep(c("(1)","a","b","ab","c","ac","bc","abc","d","ad","bd","abd","cd","acd","bcd","abcd"), times=2) ?

– Math Avengers
Nov 26 '18 at 2:45












1 Answer
1






active

oldest

votes


















0














You can define the following table as a list or a data frame as follows:



##Table shown as a list
l<-list(Treatment_combination= c("(1)", "a", "b", "ab", "c", "ac", "bc", "abc"),
Replicate= data.frame(I= c(90,74,81,83,77,81,88,73), II=c(93,78,85,80,78,80,82,70)),
Treatment_combination= c("d", "ad", "bd", "abd", "cd", "acd", "bcd", "abcd"),
Replicate= data.frame(I= c(98,72,87,85,99,79,87,80), II=c(95,76,83,86,90,75,84,80)))

##Table shown as a data frame

as.data.frame(l)


Hope it will solve your query






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',
    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%2f53473994%2ftyping-table-into-r%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









    0














    You can define the following table as a list or a data frame as follows:



    ##Table shown as a list
    l<-list(Treatment_combination= c("(1)", "a", "b", "ab", "c", "ac", "bc", "abc"),
    Replicate= data.frame(I= c(90,74,81,83,77,81,88,73), II=c(93,78,85,80,78,80,82,70)),
    Treatment_combination= c("d", "ad", "bd", "abd", "cd", "acd", "bcd", "abcd"),
    Replicate= data.frame(I= c(98,72,87,85,99,79,87,80), II=c(95,76,83,86,90,75,84,80)))

    ##Table shown as a data frame

    as.data.frame(l)


    Hope it will solve your query






    share|improve this answer




























      0














      You can define the following table as a list or a data frame as follows:



      ##Table shown as a list
      l<-list(Treatment_combination= c("(1)", "a", "b", "ab", "c", "ac", "bc", "abc"),
      Replicate= data.frame(I= c(90,74,81,83,77,81,88,73), II=c(93,78,85,80,78,80,82,70)),
      Treatment_combination= c("d", "ad", "bd", "abd", "cd", "acd", "bcd", "abcd"),
      Replicate= data.frame(I= c(98,72,87,85,99,79,87,80), II=c(95,76,83,86,90,75,84,80)))

      ##Table shown as a data frame

      as.data.frame(l)


      Hope it will solve your query






      share|improve this answer


























        0












        0








        0







        You can define the following table as a list or a data frame as follows:



        ##Table shown as a list
        l<-list(Treatment_combination= c("(1)", "a", "b", "ab", "c", "ac", "bc", "abc"),
        Replicate= data.frame(I= c(90,74,81,83,77,81,88,73), II=c(93,78,85,80,78,80,82,70)),
        Treatment_combination= c("d", "ad", "bd", "abd", "cd", "acd", "bcd", "abcd"),
        Replicate= data.frame(I= c(98,72,87,85,99,79,87,80), II=c(95,76,83,86,90,75,84,80)))

        ##Table shown as a data frame

        as.data.frame(l)


        Hope it will solve your query






        share|improve this answer













        You can define the following table as a list or a data frame as follows:



        ##Table shown as a list
        l<-list(Treatment_combination= c("(1)", "a", "b", "ab", "c", "ac", "bc", "abc"),
        Replicate= data.frame(I= c(90,74,81,83,77,81,88,73), II=c(93,78,85,80,78,80,82,70)),
        Treatment_combination= c("d", "ad", "bd", "abd", "cd", "acd", "bcd", "abcd"),
        Replicate= data.frame(I= c(98,72,87,85,99,79,87,80), II=c(95,76,83,86,90,75,84,80)))

        ##Table shown as a data frame

        as.data.frame(l)


        Hope it will solve your query







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 26 '18 at 11:59









        lalit panwarlalit panwar

        734




        734
































            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%2f53473994%2ftyping-table-into-r%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

            Futebolista

            Feedback on college project

            Albești (Vaslui)