-
Notifications
You must be signed in to change notification settings - Fork 63
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
Make sortBy(ColumnReference) accept pathOf without extra cast #779
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package org.jetbrains.kotlinx.dataframe.testSets | ||
|
||
import org.jetbrains.kotlinx.dataframe.annotations.ColumnName | ||
import org.jetbrains.kotlinx.dataframe.annotations.DataSchema | ||
|
||
// Dataset from https://www.kaggle.com/datasets/ruchi798/data-science-job-salaries | ||
@Suppress("unused") | ||
@DataSchema | ||
interface DsSalaries { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We need to add somewhere the link to the initial source of dataset (for example here, on that data schema), the origin, the license, the possible transformation which we did It's a gentleman set of actions for copying of external dataset to your codebase. If we missed it earlier, let's start from that There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I added a link. It was downloaded as is, without modifications and is public domain. So, do we need to add anything else here? |
||
@ColumnName("company_location") | ||
val companyLocation: String | ||
@ColumnName("company_size") | ||
val companySize: String | ||
@ColumnName("employee_residence") | ||
val employeeResidence: String | ||
@ColumnName("employment_type") | ||
val employmentType: String | ||
@ColumnName("experience_level") | ||
val experienceLevel: String | ||
@ColumnName("job_title") | ||
val jobTitle: String | ||
@ColumnName("remote_ratio") | ||
val remoteRatio: Int | ||
val salary: Int | ||
@ColumnName("salary_currency") | ||
val salaryCurrency: String | ||
@ColumnName("salary_in_usd") | ||
val salaryInUsd: Int | ||
val untitled: Int | ||
@ColumnName("work_year") | ||
val workYear: Int | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool new dataset for unit tests! Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great to validate on that some high-level integration tests with more complex logic instead of low-level A.a.b