Как построить график нормального распределения в AndroidPlot? - PullRequest
0 голосов
/ 18 апреля 2019

У меня трудности с отображением статистических распределений с помощью androidplot, здесь я покажу формулу нормального распределения.

Я думаю, что в Y = формула. и в X это самостоятельно генерируемые значения .Не могли бы вы мне помочь, пожалуйста?Я не понимаю документацию

enter image description here

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:ap="http://schemas.android.com/apk/res-auto"
              android:layout_height="match_parent"
              android:layout_width="match_parent">

    <com.androidplot.xy.XYPlot
        style="@style/APDefacto.Dark"
        android:id="@+id/plot"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        ap:title="A Simple XY Plot"
        ap:rangeTitle="range"
        ap:domainTitle="domain"
        ap:lineLabels="left|bottom"
        ap:lineLabelRotationBottom="-45"/>
</LinearLayout>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...