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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:31:45+00:00 2026-05-26T00:31:45+00:00

Given a table of the form: a b c X1 0 1 0 X2

  • 0

Given a table of the form:

  a b c
X1 0 1 0
X2 1 0 0
X3 1 0 0

In order to pull a column from the table:

col.1 <- table$a

Assume you have a variable:

col.name <- 'a'

col.1 <- table$col.name

Why doesn’t this work? Is there a way to make this work?

  • 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-26T00:31:45+00:00Added an answer on May 26, 2026 at 12:31 am

    It doesn’t work because the “$” operator does not evaluate its argument. What you need is to use “[” or “[[“. (It’s not a good idea to call your table. “table”. It confuses users who use the table function.)

    table <- structure(c(0, 1, 1, 1, 0, 0, 0, 0, 0), .Dim = c(3L, 3L), .Dimnames = list(
        c("X1", "X2", "X3"), c("a", "b", "c")), class = "table")
    table[ , col.name]
    # X1 X2 X3 
    #  0  1  1
    table[ , "a"]
    # X1 X2 X3 
    #  0  1  1  
    table
    table[["a"]]
    Error in table[["a"]] : subscript out of bounds
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given the table snippet: id | name | age I am trying to form
I have a variable like Doctor and Surgical I take this value from Mysql
Given a table: day_date (form of yyyy-mm-dd) column2 column3 I want to group the
Given a table of the following form CustumerID | Amount ------------------- 1 | 100
Given a table where the first column is seconds past a certain reference point
I have several tables that get JOINed together to form a table with columns
I thought that there should have been a simple solution to this, given that
I have a table of form elements where each row represents a record and
<form action=blah> <table>...</table> <table> <tr>...</tr> <tr> <td>...<td> <td> **some text that changes** </td> Given
I have the following call in my RoR script: Foo.where(event = 'Login').group('user_id').order('user_id ASC').count() This

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.