Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

joinWith method is missing #584

Closed
devcrocod opened this issue Feb 12, 2024 · 6 comments
Closed

joinWith method is missing #584

devcrocod opened this issue Feb 12, 2024 · 6 comments
Labels
bug Something isn't working

Comments

@devcrocod
Copy link
Contributor

I tried to use this: https://kotlin.github.io/dataframe/joinwith.html

But joinWith is unresolved.

Syntax Error: Unresolved reference: joinWith
@devcrocod devcrocod added the bug Something isn't working label Feb 12, 2024
@Jolanrensen
Copy link
Collaborator

image
No it isn't. Can you share an example where it's unresolved?

@devcrocod
Copy link
Contributor Author

val df1 = dataFrameOf(
    "A" to listOf("A0", "A1", "A2"),
    "B" to listOf("B0", "B1", "B2"),
    "index" to listOf("I0", "I1", "I2")
)

val df2 = dataFrameOf(
    "C" to listOf("C0", "C2", "C3"),
    "D" to listOf("D0", "D2", "D3"),
    "index" to listOf("I0", "I2", "I3")
)

df1.joinWith(df2, type = JoinType.Full) { true }

I'm working in Datalore

@devcrocod
Copy link
Contributor Author

Okay, seems on Datalore has old version of dataframe

@Jolanrensen
Copy link
Collaborator

Can reproduce it on Datalore. You're right.
%useLatestDescriptors fixes it there.

@zaleslaw
Copy link
Collaborator

@Jolanrensen what version has the Datalore?

@devcrocod
Copy link
Contributor Author

devcrocod commented Feb 13, 2024

The Datalore for new notebooks uses

Name: kotlin-jupyter-kernel
Version: 0.11.0.377

and the dataframe is the version included in this kernel

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants