Skip to content

Commit

Permalink
don't replace spaces with periods in data frame conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
shouples authored Oct 25, 2023
1 parent 575997e commit 53b46aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion r/noteable/.Rprofile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ prepare_dex_content <- function(df) {
# vectorized format (list of lists)
#data = as.matrix.data.frame(t(df))
# pandas df.to_dict("records") format
data = as.data.frame.list(df)
data = as.data.frame.list(df, check.names=FALSE)

list(
schema = schema,
Expand Down

0 comments on commit 53b46aa

Please sign in to comment.