Giter Site home page Giter Site logo

map_dtc renames col names about mlr3misc HOT 10 CLOSED

mlr-org avatar mlr-org commented on May 25, 2024
map_dtc renames col names

from mlr3misc.

Comments (10)

mllg avatar mllg commented on May 25, 2024

I think that this should throw an error. The elements to bind should be vectors, not data.tables.

from mlr3misc.

mllg avatar mllg commented on May 25, 2024

OTOH, purrr allows this.

I see no obvious or easy solution for this. Sometimes you want the "inner" names, sometimes the "outer" names.

Unnaming xs would break this:

xs = list(a = 1, b = 2)
d = map_dtc(xs, identity)

from mlr3misc.

berndbischl avatar berndbischl commented on May 25, 2024

OTOH, purrr allows this.

i find it pretty handy when f return datatables. and if purrr allows it, we should stay consistent.

Unnaming xs would break this:

xs = list(a = 1, b = 2)
d = map_dtc(xs, identity)

oops, totally correct. i guess we should only unname in case of datatables?
i think you are alreay committing this?

from mlr3misc.

berndbischl avatar berndbischl commented on May 25, 2024

you solved it in this commit 3 days ago.
i added a further test to make sure

from mlr3misc.

berndbischl avatar berndbischl commented on May 25, 2024

actually you didnt, an my test does test my issue.
if the list is named, we still have the same problem

from mlr3misc.

berndbischl avatar berndbischl commented on May 25, 2024

i want this solved, I will now at least compare what purrr does

from mlr3misc.

berndbischl avatar berndbischl commented on May 25, 2024

purrr works, as I want it
in both cases here, colnames "a" and "b" are created

library(purrr)

x1 = list(data.table(a = 1), data.table(b = 2))
x2 = list(foo = data.table(a = 1), bar = data.table(b = 2))

d1 = purrr::map_dfc(x1, identity)
print(d1)
d2 = purrr::map_dfc(x2, identity)
print(d1)

from mlr3misc.

berndbischl avatar berndbischl commented on May 25, 2024

fixed NOW and added a test
I had to add a mini.map, in map_dtc, that slows the call down A BIT
but at least it works now

from mlr3misc.

mllg avatar mllg commented on May 25, 2024

I did not fix because I was unsure about what behavior is wanted. Apparently we now just discard the "outer" names. I don't find it very intuitiv, but can live with it.

I've fixed your commit so that everything with a dimension works (i.e., data.frames and matrices).

from mlr3misc.

berndbischl avatar berndbischl commented on May 25, 2024

I did not fix because I was unsure about what behavior is wanted. Apparently we now just discard the "outer" names. I don't find it very intuitiv,

well in the OP I suggested exactly that. you never said you want something else
(you said you wanted it to work with vectors, i then immediately agreed)

also: we are now 100% in alignment with purrr.
(that I posted today)
i thought we wanted exactly that?

from mlr3misc.

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.