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 7181199
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T17:30:26+00:00 2026-05-28T17:30:26+00:00

I have a large function which has a vector defined as follows: v <-

  • 0

I have a large function which has a vector defined as follows:

v <- mat.or.vec(length(communities), 1)
names(v) <- communities

And, I access the elements of v in a loop as follows

for(c in communities){
  v[c] = 1
}

When this code was written and tested, the list communities was a list of strings. But today when I ran this on a dataset which had all integer values in the communities list, my function crashed. It took me a while to figure out that when communities is a integer list, c is an integer and v[c] access the cth element of v and not the element of v with name c.

I can fix this problem by using something like v[as.character(c)]. There are many such variables which face the same problem.

Is there a more elegant solution to this problem?

  • 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-05-28T17:30:27+00:00Added an answer on May 28, 2026 at 5:30 pm

    Well, the simplest change is in the for statement:

    for(c in as.character(communities)){
      v[c] = 1
    }
    

    Or vectorized:

    v[as.character(communities)] <- 1
    

    Or to have even more control you could do the match yourself:

    idx <- match(communities, names(v))
    v[idx] <- 1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Flex application that calls a function which searches a large document
I am having a strange problem. I have a function which returns a large
I have a large work space which has many source files of C code.
Let's say I have a large collection of elements. Each element has a position
I have a c++ program which performs one function. It loads a large data-file
I am working on my first large python project. I have one function which
hope you can help me! I have a form, which has a large amount
I have a large function that I wish to load only when it is
I'm looking for an algorithm which someone has access to that will compute the
We have a large C code base that has been developed over several decades.

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.