State joins capitals
You would like to join the wages
DataFrame with the state_info
DataFrame, which contains information about the states, such as capital, area, and so on. Let's get to it!
There are two versions of the state_info
dataset:
state_info
containing thestate
column;state_info_original
, the original version, which contains theState
column.
The DataFrames
package has been loaded, along with the wages
, state_info
, and state_info_original
DataFrames.
Diese Übung ist Teil des Kurses
Data Manipulation in Julia
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Join wages and state_info on state
____ = ____(____, ____, ____)