从字符类型转换后,数值不一致

时间:2017-07-19 06:21:58

标签: r dataframe type-conversion numeric

update()中的字段<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto" android:background="#EACB3B" tools:context="com.example.uitableview.MainActivity"> <RelativeLayout android:layout_width="0dp" android:layout_height="0dp" android:orientation="vertical" tools:layout_constraintTop_creator="1" tools:layout_constraintRight_creator="1" tools:layout_constraintBottom_creator="1" android:layout_marginStart="8dp" android:layout_marginEnd="8dp" android:layout_marginTop="8dp" android:layout_marginBottom="8dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintRight_toRightOf="parent" tools:layout_constraintLeft_creator="1" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintTop_toTopOf="parent"> <android.support.constraint.ConstraintLayout android:id="@+id/lvID" android:layout_width="match_parent" android:layout_height="match_parent"> <ImageView android:id="@+id/imgView" android:layout_width="wrap_content" android:layout_height="234dp" android:src="@drawable/mango" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" android:layout_marginTop="8dp" app:layout_constraintTop_toBottomOf="@+id/expLv" app:layout_constraintHorizontal_bias="0.0" /> <ExpandableListView android:id="@+id/expLv" android:layout_width="352dp" android:layout_height="wrap_content" android:layout_marginTop="16dp" android:orientation="vertical" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> </android.support.constraint.ConstraintLayout> </RelativeLayout> </android.support.constraint.ConstraintLayout> 属于lowest_specification类型。我已使用site data frame将此字段从character数据类型转换为character,并将其值存储在numeric中。这种转换顺利进行。

但是,当我打印完整数据框而不是单个字段as.numeric()时,numeric_lowest_specification的值之间存在不一致。

当我打印完整的数据框输出时:

numeric_lowest_specification

当我从数据框中打印单个字段时:

numeric_lowest_specification

因此,如果从数据框打印单个字段,## lowest_specification numeric_lowest_specification ## <chr> <dbl> ## 1 475.0 475 ## 2 475.0 475 ## 3 475.0 475 ## 4 475.0 475 ## 5 475.0 475 ## 6 475.0 475 ## 7 475.0 475 ## 8 475.0 475 ## 9 475.0 475 ## 10 475.0 475 将附加到数字上。

我试图理解这种不一致背后的可能原因。

0 个答案:

没有答案