1. 学ぶ
  2. /
  3. コース
  4. /
  5. R 入門

Connected

演習

リストを作成する

Let us create our first list! To construct a list you use the function list():

my_list <- list(comp1, comp2 ...)

The arguments to the list function are the list components. Remember, these components can be matrices, vectors, other lists, …

指示

100 XP

my_list、my_vector、my_matrix をコンポーネントとして含む、my_df という名前のリストを作成してください。