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

Variables with spaces do not render (A B is converted to A.B at data.frame step) #46

Closed
jeremiahpslewis opened this issue Aug 18, 2015 · 2 comments

Comments

@jeremiahpslewis
Copy link
Contributor

No description provided.

@timelyportfolio
Copy link
Collaborator

Probably stepping on dangerous ground here, but could do something like this in lines.

oldnames <- names(data)
data <- data.frame(data)
names(data) <- oldnames

I would be concerned about downstream implications.

@hrbrmstr
Copy link
Owner

Fixed in 0.4.4.9001 (just now). Just had to do:

  data <- data.frame(data, check.names=FALSE)

instead of:

  data <- data.frame(data)

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

3 participants