शुरू करेंमुफ़्त में शुरू करें

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 the state column;
  • state_info_original, the original version, which contains the State column.

The DataFrames package has been loaded, along with the wages, state_info, and state_info_original DataFrames.

यह अभ्यास पाठ्यक्रम का हिस्सा है

Data Manipulation in Julia

पाठ्यक्रम देखें

इंटरैक्टिव व्यावहारिक अभ्यास

इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।

# Join wages and state_info on state
____ = ____(____, ____, ____)
कोड संपादित करें और चलाएँ