我希望從下面的數據集中找到旅行持續時間和年齡的相關性。我正在使用功能cor(age,df$tripduration)
。但是,它給了我輸出NA。你能不能讓我知道我該如何處理關聯?我找到了 「時代」 的語法如下:如何查找數據集中的相關性
age <- (2017-as.numeric(df$birth.year))
和tripduration(seconds)
作爲df$tripduration
。
以下是數據。性別中的數字1表示男性,2表示女性。
tripduration birth year gender
439 1980 1
186 1984 1
442 1969 1
170 1986 1
189 1990 1
494 1984 1
152 1972 1
537 1994 1
509 1994 1
157 1985 2
1080 1976 2
239 1976 2
344 1992 2
你一定做了一個錯字的地方,因爲當我運行示例代碼中,我得到8.37% – lebelinoz