We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06223a9 commit 0f0454fCopy full SHA for 0f0454f
.gitignore
@@ -492,3 +492,4 @@ test/demo/machineLearning/umap/Vae/nmf_deconv.csv
492
test/demo/machineLearning/umap/Vae/old/nmf_class.csv
493
test/demo/machineLearning/umap/Vae/old/nmf_deconv.csv
494
test/unitTest/matrix_test/wine.dat
495
+test/unitTest/dataframe/wine.dat
test/unitTest/dataframe/binary_data.R
@@ -0,0 +1,9 @@
1
+data(wine);
2
+
3
+print(wine);
4
5
+writeBin(wine, con = file.path(@dir,"wine.dat"));
6
7
+wine_read = readBin(file.path(@dir,"wine.dat"), what = "dataframe");
8
9
+print(wine_read );
0 commit comments