dotnet / docs

This repository contains .NET Documentation.
https://learn.microsoft.com/dotnet
Creative Commons Attribution 4.0 International
4.21k stars 5.87k forks source link

DataKind Enum is not well documented #9278

Closed niteshkumarshaw closed 5 years ago

niteshkumarshaw commented 5 years ago

DataKind Enum is not well documented, this is an very important think to be documented with a priority bases. Earlier i use python for ML part now i wish to use this library further but i can't find any documentation on so many parts this is one of them and a very impotent one. please give some documentation so that anyone can understand situation/purpose to use these enum.


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

koav commented 5 years ago

Hello, maybe this will be useful for you. Inside the library I found the following type match:

        I1= sbyte
        U1= byte
        I2= short
        U2= ushort
        I4= int
        U4= uint
        I8= long
        U8= ulong
        R4= Single
        R8= Double
        TX, TXT, Text = ReadOnlyMemory<char> || string
        BL= bool
        TS= TimeSpan
        DT= DateTime
        DZ= DateTimeOffset
        UG= UInt128
mairaw commented 5 years ago

Duplicate of #9184

mohamedfaizancassim commented 5 years ago

With regards to: TS= TimeSpan DT= DateTime DZ= DateTimeOffset Could anyone give some examples of data that would work with these types? I had some issue using them, when i tried ML.net with my own data.