Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9080405
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T20:04:06+00:00 2026-06-16T20:04:06+00:00

I have two data frames which both have one column: df1 Server A B

  • 0

I have two data frames which both have one column:

df1

Server
A
B
c
d

df2

Server
a
f
z
x

I need to check if df1$Server exists in df2$Server. If yes, I need to add a column in df1 and put 1 else put 0.

I have this code, I think the algorithm is right but it does not seem to be working. Any input is appreciated.

for (i in 1:nrow(df1)) {
    if (df1[i,1] %in% row.names(df2)) {
        df1[i,2]<-c(1)
    } else{
        df1[i,2]<-(0)
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T20:04:07+00:00Added an answer on June 16, 2026 at 8:04 pm

    It’s simpler than you’re making it:

    df1$LogicalColumn <- as.numeric(df1$Server==df2$Server)
    

    This will sequence along each column and check for pairwise equality.

    df1$LogicalColumn <- as.numeric(df1$Server %in% df2$Server)
    

    This will check all values of df2‘s column for each value of df1$Server. If it really is the rownames you’re concerned with (why?), replace df2$Server with rownames(df2) in either context.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here are my two data frames, both have the same amount of rows which
I have two data.frames in R, one of which has two columns and of
I have two data frames, one with 1 column (X), and the other with
I have a data frame with two qualitative variables (Q1, Q2) which are both
I have two data frames with two columns each. The first column is timestamps
I have the following matching problem: I have two data.frames, one with an observation
I have written R code that merges two data frames based on first column
I have two data frames. The one consists of three variables, namely date, strike
I have two data frames A and B , both of the same dimensions.
I have two large data frames, a and b for which identical(a,b) is TRUE

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.