Giter Club home page Giter Club logo

Comments (8)

trinker avatar trinker commented on June 17, 2024

To use arguments to a variable function you need to use parenthesis as in:

x <- r_data_frame(n =1000,
    name(replace = TRUE)
)

from wakefield.

trinker avatar trinker commented on June 17, 2024

I'm closing this feel free to comment. It would help future posters if you let them know if this solved your issue.

from wakefield.

Rdub2 avatar Rdub2 commented on June 17, 2024

Yes, this solved the single variable issue. Thank you.
However multiple variables do no work with this syntax. Maybe there is a workaround.

x <- data.frame(
name(10000, replace = TRUE),
sex(10000, replace = TRUE)
)

from wakefield.

trinker avatar trinker commented on June 17, 2024

Why do you need replace = TRUE on the sex variable? Also why are you using data.frame?

from wakefield.

Rdub2 avatar Rdub2 commented on June 17, 2024

started with r_data_frame, but I need sampling with replacement. Name per se not needed, but thats the variable in which I originally encountered the problem. I can work around it, it's just not knowing what parameters to use to consistently cast it to a data frame.

#works with N < 1000
r_data_frame(
n = 100,
name,
sex
)

from wakefield.

trinker avatar trinker commented on June 17, 2024

I don't understand. What I showed above works as you want I believe... just add new variables to it as follows:

r_data_frame(
    n = 10000,
    name(replace = TRUE),
    sex
)

from wakefield.

Rdub2 avatar Rdub2 commented on June 17, 2024

OK. That works.
But, then switching back to no replace, how would you could for error in?:

y <- r_data_frame(

  • n = 10000,
  • name(replace = FALSE),
  • sex
  • )
    Error in sample.int(length(x), size, replace, prob) :
    cannot take a sample larger than the population when 'replace = FALSE'

#Works for n<1000

from wakefield.

trinker avatar trinker commented on June 17, 2024

There are only about 1000 names in the vector I select from. If you don't replace and want a sample larger than this it will throw an error. You have two options

  1. use replacement
  2. create your own names function with a vector that contains more names

from wakefield.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.