Dataframe full of












0















I have two data.frame: df1



structure(list(trial = c("SA1", "SA1", "SA1", "SA1", "SA1", "SA1"), CID =c(2565L, 8640L, 8456L, 8631L, 9329L, 8683L), SID = c(3L, 87L, 11L, 17L, 6L, 16L), GID = c("GID16170", "GID449286", "GID62427", "GID345692", "GID41372", "GID451760"),TID = c(5428L, 5428L, 5428L, 5428L, 5428L, 5428L)), row.names = c(NA, 6L), class = "data.frame")


and df2



structure(list(GID = c("GID7173723", "GID4878677", "GID88208", "GID346403","GID268825", "GID7399578", "GID6624429"), `1A-1145442` = c(2L, 0L,2L, 2L, 0L, 2L, 2L), `1A-1158042` = c(2L, 0L, 2L, 2L, 0L, 2L, 2L), `1A-1158055` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L), `1A-1229616` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L), `1A-1236254` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L), `1A-1238114` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L)), row.names = c(NA, 7L), class = "data.frame")


when I make the following df2[df1$GID] I get :



structure(list(GID = c(NA_character_, NA_character_, NA_character_,NA_character_, NA_character_, NA_character_, NA_character_), `1A-1145442` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1158042` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1158055` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1229616` =c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1236254` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1238114` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_)), row.names = c("NA", "NA.1", "NA.2", "NA.3", "NA.4", "NA.5", "NA.6"), class = "data.frame")


What is wrong with my code ? I want to expand the rows in df2 to 2700 rows. Basically df1 has 2700 rows and df2 2180 rows. Also df2$GID is basically unique(df1$GID) so all values of df2$GID are inside df1$GID. plus df2$GID has duplicated values.



Regards










share|improve this question























  • Please show expected output based on df1 and df2.

    – markus
    Nov 23 '18 at 21:18











  • I expect something like df2 incremented by by the duplicated values of df1$GID

    – Alexandre Mondaini
    Nov 23 '18 at 21:23











  • sorry I use this : df2[df1$GID,] instead of df2[df1$GID]

    – Alexandre Mondaini
    Nov 23 '18 at 21:25











  • I can't make heads or tails of this question.

    – Ista
    Nov 23 '18 at 23:46











  • I figured out my error, my columns were transformed from characters into factor at some stage of my pipeline and the subsetting just did not work converting everything into NA . sorry guys for the stupid question.

    – Alexandre Mondaini
    Nov 24 '18 at 3:41
















0















I have two data.frame: df1



structure(list(trial = c("SA1", "SA1", "SA1", "SA1", "SA1", "SA1"), CID =c(2565L, 8640L, 8456L, 8631L, 9329L, 8683L), SID = c(3L, 87L, 11L, 17L, 6L, 16L), GID = c("GID16170", "GID449286", "GID62427", "GID345692", "GID41372", "GID451760"),TID = c(5428L, 5428L, 5428L, 5428L, 5428L, 5428L)), row.names = c(NA, 6L), class = "data.frame")


and df2



structure(list(GID = c("GID7173723", "GID4878677", "GID88208", "GID346403","GID268825", "GID7399578", "GID6624429"), `1A-1145442` = c(2L, 0L,2L, 2L, 0L, 2L, 2L), `1A-1158042` = c(2L, 0L, 2L, 2L, 0L, 2L, 2L), `1A-1158055` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L), `1A-1229616` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L), `1A-1236254` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L), `1A-1238114` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L)), row.names = c(NA, 7L), class = "data.frame")


when I make the following df2[df1$GID] I get :



structure(list(GID = c(NA_character_, NA_character_, NA_character_,NA_character_, NA_character_, NA_character_, NA_character_), `1A-1145442` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1158042` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1158055` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1229616` =c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1236254` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1238114` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_)), row.names = c("NA", "NA.1", "NA.2", "NA.3", "NA.4", "NA.5", "NA.6"), class = "data.frame")


What is wrong with my code ? I want to expand the rows in df2 to 2700 rows. Basically df1 has 2700 rows and df2 2180 rows. Also df2$GID is basically unique(df1$GID) so all values of df2$GID are inside df1$GID. plus df2$GID has duplicated values.



Regards










share|improve this question























  • Please show expected output based on df1 and df2.

    – markus
    Nov 23 '18 at 21:18











  • I expect something like df2 incremented by by the duplicated values of df1$GID

    – Alexandre Mondaini
    Nov 23 '18 at 21:23











  • sorry I use this : df2[df1$GID,] instead of df2[df1$GID]

    – Alexandre Mondaini
    Nov 23 '18 at 21:25











  • I can't make heads or tails of this question.

    – Ista
    Nov 23 '18 at 23:46











  • I figured out my error, my columns were transformed from characters into factor at some stage of my pipeline and the subsetting just did not work converting everything into NA . sorry guys for the stupid question.

    – Alexandre Mondaini
    Nov 24 '18 at 3:41














0












0








0


0






I have two data.frame: df1



structure(list(trial = c("SA1", "SA1", "SA1", "SA1", "SA1", "SA1"), CID =c(2565L, 8640L, 8456L, 8631L, 9329L, 8683L), SID = c(3L, 87L, 11L, 17L, 6L, 16L), GID = c("GID16170", "GID449286", "GID62427", "GID345692", "GID41372", "GID451760"),TID = c(5428L, 5428L, 5428L, 5428L, 5428L, 5428L)), row.names = c(NA, 6L), class = "data.frame")


and df2



structure(list(GID = c("GID7173723", "GID4878677", "GID88208", "GID346403","GID268825", "GID7399578", "GID6624429"), `1A-1145442` = c(2L, 0L,2L, 2L, 0L, 2L, 2L), `1A-1158042` = c(2L, 0L, 2L, 2L, 0L, 2L, 2L), `1A-1158055` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L), `1A-1229616` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L), `1A-1236254` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L), `1A-1238114` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L)), row.names = c(NA, 7L), class = "data.frame")


when I make the following df2[df1$GID] I get :



structure(list(GID = c(NA_character_, NA_character_, NA_character_,NA_character_, NA_character_, NA_character_, NA_character_), `1A-1145442` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1158042` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1158055` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1229616` =c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1236254` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1238114` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_)), row.names = c("NA", "NA.1", "NA.2", "NA.3", "NA.4", "NA.5", "NA.6"), class = "data.frame")


What is wrong with my code ? I want to expand the rows in df2 to 2700 rows. Basically df1 has 2700 rows and df2 2180 rows. Also df2$GID is basically unique(df1$GID) so all values of df2$GID are inside df1$GID. plus df2$GID has duplicated values.



Regards










share|improve this question














I have two data.frame: df1



structure(list(trial = c("SA1", "SA1", "SA1", "SA1", "SA1", "SA1"), CID =c(2565L, 8640L, 8456L, 8631L, 9329L, 8683L), SID = c(3L, 87L, 11L, 17L, 6L, 16L), GID = c("GID16170", "GID449286", "GID62427", "GID345692", "GID41372", "GID451760"),TID = c(5428L, 5428L, 5428L, 5428L, 5428L, 5428L)), row.names = c(NA, 6L), class = "data.frame")


and df2



structure(list(GID = c("GID7173723", "GID4878677", "GID88208", "GID346403","GID268825", "GID7399578", "GID6624429"), `1A-1145442` = c(2L, 0L,2L, 2L, 0L, 2L, 2L), `1A-1158042` = c(2L, 0L, 2L, 2L, 0L, 2L, 2L), `1A-1158055` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L), `1A-1229616` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L), `1A-1236254` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L), `1A-1238114` = c(2L, 2L, 2L, 2L, 2L, 2L, 2L)), row.names = c(NA, 7L), class = "data.frame")


when I make the following df2[df1$GID] I get :



structure(list(GID = c(NA_character_, NA_character_, NA_character_,NA_character_, NA_character_, NA_character_, NA_character_), `1A-1145442` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1158042` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1158055` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1229616` =c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1236254` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_), `1A-1238114` = c(NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_, NA_character_)), row.names = c("NA", "NA.1", "NA.2", "NA.3", "NA.4", "NA.5", "NA.6"), class = "data.frame")


What is wrong with my code ? I want to expand the rows in df2 to 2700 rows. Basically df1 has 2700 rows and df2 2180 rows. Also df2$GID is basically unique(df1$GID) so all values of df2$GID are inside df1$GID. plus df2$GID has duplicated values.



Regards







r






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 23 '18 at 21:15









Alexandre MondainiAlexandre Mondaini

1347




1347













  • Please show expected output based on df1 and df2.

    – markus
    Nov 23 '18 at 21:18











  • I expect something like df2 incremented by by the duplicated values of df1$GID

    – Alexandre Mondaini
    Nov 23 '18 at 21:23











  • sorry I use this : df2[df1$GID,] instead of df2[df1$GID]

    – Alexandre Mondaini
    Nov 23 '18 at 21:25











  • I can't make heads or tails of this question.

    – Ista
    Nov 23 '18 at 23:46











  • I figured out my error, my columns were transformed from characters into factor at some stage of my pipeline and the subsetting just did not work converting everything into NA . sorry guys for the stupid question.

    – Alexandre Mondaini
    Nov 24 '18 at 3:41



















  • Please show expected output based on df1 and df2.

    – markus
    Nov 23 '18 at 21:18











  • I expect something like df2 incremented by by the duplicated values of df1$GID

    – Alexandre Mondaini
    Nov 23 '18 at 21:23











  • sorry I use this : df2[df1$GID,] instead of df2[df1$GID]

    – Alexandre Mondaini
    Nov 23 '18 at 21:25











  • I can't make heads or tails of this question.

    – Ista
    Nov 23 '18 at 23:46











  • I figured out my error, my columns were transformed from characters into factor at some stage of my pipeline and the subsetting just did not work converting everything into NA . sorry guys for the stupid question.

    – Alexandre Mondaini
    Nov 24 '18 at 3:41

















Please show expected output based on df1 and df2.

– markus
Nov 23 '18 at 21:18





Please show expected output based on df1 and df2.

– markus
Nov 23 '18 at 21:18













I expect something like df2 incremented by by the duplicated values of df1$GID

– Alexandre Mondaini
Nov 23 '18 at 21:23





I expect something like df2 incremented by by the duplicated values of df1$GID

– Alexandre Mondaini
Nov 23 '18 at 21:23













sorry I use this : df2[df1$GID,] instead of df2[df1$GID]

– Alexandre Mondaini
Nov 23 '18 at 21:25





sorry I use this : df2[df1$GID,] instead of df2[df1$GID]

– Alexandre Mondaini
Nov 23 '18 at 21:25













I can't make heads or tails of this question.

– Ista
Nov 23 '18 at 23:46





I can't make heads or tails of this question.

– Ista
Nov 23 '18 at 23:46













I figured out my error, my columns were transformed from characters into factor at some stage of my pipeline and the subsetting just did not work converting everything into NA . sorry guys for the stupid question.

– Alexandre Mondaini
Nov 24 '18 at 3:41





I figured out my error, my columns were transformed from characters into factor at some stage of my pipeline and the subsetting just did not work converting everything into NA . sorry guys for the stupid question.

– Alexandre Mondaini
Nov 24 '18 at 3:41












0






active

oldest

votes











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%2f53453015%2fdataframe-full-of-na%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















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%2f53453015%2fdataframe-full-of-na%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

Create new schema in PostgreSQL using DBeaver

Deepest pit of an array with Javascript: test on Codility

Costa Masnaga