Skip to content
#

data-wrangling

Here are 622 public repositories matching this topic...

antoine2711
antoine2711 commented Apr 8, 2022

It would be good to be able to have the field name escaped with the SQL importer, and to be able to choose by which character.
This was discussed in Issue #1940

Proposed solution

Add a text field for an escape character in the SQL Exporter.

Alternatives considered

data manipulation at the text level after exportation.

Additional context

![image](https://user-images.githubu

enhancement good first issue export SQL/database
renikaul
renikaul commented Feb 17, 2022

Starting at line 135 the lesson uses view() to open the data in RStudio's Data Viewer.
I suggest adding to the note on line 141 that tibble::view() and utils::View() have similar functionality but are part of different packages which is why the function does not seem to be case sensitive.

type:clarification good first issue
davis68
davis68 commented Sep 17, 2020
  • I felt like nunique was arbitrarily (re)introduced when it was necessary. It wouldn't be top-of-mind for students solving problems.
  • The lesson answers need to be adjacent to the exercises.
  • I like the pre-introduction of masks and then circling back around to explain them.
  • I feel like Part 4 needs to be broken up and integrated across other lessons: it felt thin on its own.
  • Horizo
good first issue
umnik20
umnik20 commented May 4, 2020

Dear Community,

There is a typo in the section titled "The StringsAsFactors argument" after the second block of code that demonstrates the use of the str() function. Right after the code boxes is written "We can see that the $Color and $State columns are factors and $Speed is a numeric column", but the box shows that the $Color column is a vector of strings.

Regards,

Rodolfo

good first issue
jdinklo
jdinklo commented Feb 24, 2022

https://swcarpentry.github.io/python-novice-gapminder/01-run-quit/index.html
Update in wording

I would like to suggest improvement to the below opening paragraph, found at https://swcarpentry.github.io/python-novice-gapminder/01-run-quit/index.html

"Many software developers will often use an integrated development environment (IDE) or a text editor to create and edit their Python programs

type:enhancement good first issue
lachlandeer
lachlandeer commented Jul 30, 2018

In episode _episodes_rmd/12-time-series-raster.Rmd

There is a big chunk of code that can probably be made to look nicer via dplyr:

# Plot RGB data for Julian day 133
 RGB_133 <- stack("data/NEON-DS-Landsat-NDVI/HARV/2011/RGB/133_HARV_landRGB.tif")
 RGB_133_df <- raster::as.data.frame(RGB_133, xy = TRUE)
 quantiles = c(0.02, 0.98)
 r <- quantile(RGB_133_df$X133_HARV_landRGB.1, q
good first issue

Improve this page

Add a description, image, and links to the data-wrangling topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the data-wrangling topic, visit your repo's landing page and select "manage topics."

Learn more