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

Error in descriptive text in part 3 of Introduction to DataFrames.jl #8

Closed
semmottos opened this issue Jun 2, 2021 · 2 comments
Closed

Comments

@semmottos
Copy link

The error (2 in fact) is missing of a colon in front of 'name' in the last two examples of this passage which should read like this:

It can be achieved like this:

df1_2[:, :name] = df_raw.name
or like this

df1_2.name = df_raw[:, :name]
We could also write:

df1_2[:, :name] = df_raw[:, :name]

@bkamins
Copy link
Contributor

bkamins commented Jun 2, 2021

Fixed. Thank you!

@bkamins bkamins closed this as completed Jun 2, 2021
@semmottos
Copy link
Author

semmottos commented Jun 2, 2021 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants