You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, C++ prints NaN values as "nan", whereas R prints "NA". Not sure if you can change R but in C++ you would have to check every float before printing which would be a pain. You can also just mark both "nan" and "NA" as nan tokens whenever you load the network (e.g. with pandas).
In C++ you can specify the print format for floats. But again, I don't think it's a big deal because both formats are valid and widely recognized in C++, Python, R, etc.
Here are the top 10 lines of the same network before and after going through the command
kinc-filter-bias.R
Notice that the
Similarity_Score
andp_value
are truncated from 8 to 4 significant digits. Notice that the r_squared is changed fromnan
toNA
The text was updated successfully, but these errors were encountered: