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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T18:50:58+00:00 2026-06-05T18:50:58+00:00

I have some code that runs a model in a loop. Each iteration of

  • 0

I have some code that runs a model in a loop. Each iteration of the loop runs a slightly different model and the results are stored in a variable . What is a good way to store these objects so I can access them after the loop terminates ? I thought about something like this:

fit.list <- list(n)
for (i in 1:n) {
    fit <- glm(......)
    fit.list[i] <- fit
}

But then I want to access each model results, for example summary(fit.list[4]) or plot(fit.list[15]) but that doesn’t seem to 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-06-05T18:50:59+00:00Added an answer on June 5, 2026 at 6:50 pm

    Try

    plot(fit.list[[15]])
    

    The single [ function extracts a list with the requested component(s), even if that list if of length 1.

    The double [[ function extracts the single stated component and returns it but not in a list; i.e. you get the component itself not a list containing that component.

    Here is an illustration:

    > mylist <- list(a = 1, b = "A", c = data.frame(X = 1:5, Y = 6:10))
    > str(mylist)
    List of 3
     $ a: num 1
     $ b: chr "A"
     $ c:'data.frame':  5 obs. of  2 variables:
      ..$ X: int [1:5] 1 2 3 4 5
      ..$ Y: int [1:5] 6 7 8 9 10
    > str(mylist["c"])
    List of 1
     $ c:'data.frame':  5 obs. of  2 variables:
      ..$ X: int [1:5] 1 2 3 4 5
      ..$ Y: int [1:5] 6 7 8 9 10
    > str(mylist[["c"]])
    'data.frame':   5 obs. of  2 variables:
     $ X: int  1 2 3 4 5
     $ Y: int  6 7 8 9 10
    

    Notice the difference in the last two command outputs. str(mylist["c"]) says “List of 1” whilst str(mylist[["c"]]) says “'data.frame':“.

    With your plot(fit.list[15]) you were asking R to plot a list object not the model contained in that element of the list.

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

Sidebar

Related Questions

I have some jQuery code that runs fine until I add the jQuery UI
I have some code that compiles and runs on MSVC++ but will not compile
I have a function that runs some fairly generic code that does a lot
I have some specific code that runs in debug mode and other code that
I have some code that I want to execute if an exception happens. But
I have some code that uses subprocess to look at the logs from a
I have some code that's currently giving me an error, because recur can only
I have some code that I have inherited that generates a matrix of significance
I have some code that calculates the nth root of a number. Right now,
I have some code that inserts a record into a SQLite table: $statement =

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.