Moodle APIs  3.8
Moodle 3.8.6 (Build: 20201109)
Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
core\analytics\analyser\users Class Reference

Users analyser (insights for users). More...

Inheritance diagram for core\analytics\analyser\users:
core_analytics\local\analyser\base

Public Member Functions

 add_log ($string)
 Adds a register to the analysis log. More...
 
 check_indicator_requirements (\core_analytics\local\indicator\base $indicator)
 Checks that this analyser satisfies the provided indicator requirements. More...
 
 get_all_samples (\core_analytics\analysable $analysable)
 This function returns this analysable list of samples. More...
 
 get_all_samples (\core_analytics\analysable $user)
 This will return just one user as we analyse users separately. More...
 
 get_analysables ()
 Returns the list of analysable elements available on the site. More...
 
 get_analysables_iterator (?string $action=null, array $contexts=[])
 The site users are the analysable elements returned by this analyser. More...
 
 get_indicators ()
 Getter for indicators. More...
 
 get_labelled_data (array $contexts=[])
 Returns labelled data (training and evaluation). More...
 
 get_logs ()
 Returns the analysis logs. More...
 
 get_modelid ()
 Model id getter. More...
 
 get_options ()
 Options getter. More...
 
 get_sample_analysable ($sampleid)
 Returns the analysable of a sample. More...
 
 get_samples ($sampleids)
 Returns samples data from sample ids. More...
 
 get_samples_origin ()
 Samples origin is user table. More...
 
 get_static_data (array $contexts=[])
 Returns indicator calculations as an array. More...
 
 get_target ()
 Returns the analysed target. More...
 
 get_timesplittings ()
 Getter for time splittings. More...
 
 get_unlabelled_data (array $contexts=[])
 Returns unlabelled data (prediction). More...
 
 instantiate_indicators ()
 Instantiate the indicators. More...
 
 join_sample_user ($sampletablealias)
 Join the samples origin table with the user id table. More...
 
 processes_user_data ()
 We need to delete associated data if a user requests his data to be deleted. More...
 
 sample_access_context ($sampleid)
 Returns the context of a sample. More...
 
 sample_description ($sampleid, $contextid, $sampledata)
 Returns the description of a sample. More...
 

Static Public Member Functions

static context_restriction_support ()
 Returns an array of context levels that can be used to restrict the contexts used during analysis. More...
 
static one_sample_per_analysable ()
 Just one sample per analysable. More...
 
static potential_context_restrictions (string $query=null)
 Returns the possible contexts used by the analyser. More...
 

Protected Member Functions

 check_indicators_requirements ()
 Checks if the analyser satisfies all the model indicators requirements. More...
 
 get_iterator_sql (string $tablename, int $contextlevel, ?string $action=null, ?string $tablealias=null, array $contexts=[])
 Get the sql of a default implementation of the iterator. More...
 
 order_sql (?string $fieldname=null, string $order='ASC', ?string $tablealias=null)
 Returns the order by clause. More...
 
 provided_sample_data ()
 This provides samples' user and context. More...
 

Protected Attributes

core_analytics local indicator base[] $indicators
 The model indicators.
 
string[] $log
 Simple log array.
 
int $modelid
 
array $options
 Execution options.
 
core_analytics local target base $target
 The model target.
 
core_analytics local time_splitting base[] $timesplittings
 Time splitting methods to use. More...
 

Detailed Description

Users analyser (insights for users).

License
http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later

Member Function Documentation

◆ add_log()

core_analytics\local\analyser\base::add_log (   $string)
inherited

Adds a register to the analysis log.

Parameters
string$string
Return values
void

◆ check_indicator_requirements()

core_analytics\local\analyser\base::check_indicator_requirements ( \core_analytics\local\indicator\base  $indicator)
inherited

Checks that this analyser satisfies the provided indicator requirements.

Parameters
core_analytics\local\indicator\base$indicator
Return values
true|string[]True if all good, missing requirements list otherwise

◆ check_indicators_requirements()

core_analytics\local\analyser\base::check_indicators_requirements ( )
protectedinherited

Checks if the analyser satisfies all the model indicators requirements.

Exceptions
core_analytics

◆ context_restriction_support()

static core_analytics\local\analyser\base::context_restriction_support ( )
staticinherited

Returns an array of context levels that can be used to restrict the contexts used during analysis.

The contexts provided to self::get_analysables_iterator will match these contextlevels.

Return values
arrayArray of context levels or an empty array if context restriction is not supported.

Reimplemented in core_analytics\local\analyser\by_course.

◆ get_all_samples() [1/2]

core_analytics\local\analyser\base::get_all_samples ( \core_analytics\analysable  $analysable)
abstractinherited

This function returns this analysable list of samples.

Parameters
core_analytics\analysable$analysable
Return values
arrayarray[0] = int[] (sampleids) and array[1] = array (samplesdata)

◆ get_all_samples() [2/2]

core\analytics\analyser\users::get_all_samples ( \core_analytics\analysable  $user)

This will return just one user as we analyse users separately.

Parameters
core_analytics\analysable$user
Return values
array

◆ get_analysables()

core_analytics\local\analyser\base::get_analysables ( )
inherited

Returns the list of analysable elements available on the site.

core_analytics\local\analyser\by_course and core_analytics\local\analyser\sitewide are implementing this method returning site courses (by_course) and the whole system (sitewide) as analysables.

Todo:
MDL-65284 This will be removed in Moodle 4.1
Deprecated:
See also
get_analysables_iterator
Exceptions
coding_exception
Return values
core_analytics

◆ get_analysables_iterator()

core\analytics\analyser\users::get_analysables_iterator ( ?string  $action = null,
array  $contexts = [] 
)

The site users are the analysable elements returned by this analyser.

Parameters
string | null$action'prediction', 'training' or null if no specific action needed.
context[]$contextsOnly analysables that depend on the provided contexts. All analysables in the system if empty.
Return values
Iterator

Reimplemented from core_analytics\local\analyser\base.

◆ get_indicators()

core_analytics\local\analyser\base::get_indicators ( )
inherited

Getter for indicators.

Return values
core_analytics

◆ get_iterator_sql()

core_analytics\local\analyser\base::get_iterator_sql ( string  $tablename,
int  $contextlevel,
?string  $action = null,
?string  $tablealias = null,
array  $contexts = [] 
)
protectedinherited

Get the sql of a default implementation of the iterator.

This method only works for analysers that return analysable elements which ids map to a context instance ids.

Parameters
string$tablenameThe name of the table
int$contextlevelThe context level of the analysable
string | null$action
string | null$tablealiasThe table alias
context[]$contextsOnly analysables that depend on the provided contexts. All analysables if empty.
Return values
array[0] => sql and [1] => params array

◆ get_labelled_data()

core_analytics\local\analyser\base::get_labelled_data ( array  $contexts = [])
inherited

Returns labelled data (training and evaluation).

Parameters
context[]$contextsRestrict the analysis to these contexts. No context restrictions if null.
Return values
stored_file[]

◆ get_logs()

core_analytics\local\analyser\base::get_logs ( )
inherited

Returns the analysis logs.

Return values
string[]

◆ get_modelid()

core_analytics\local\analyser\base::get_modelid ( )
inherited

Model id getter.

Return values
int

◆ get_options()

core_analytics\local\analyser\base::get_options ( )
inherited

Options getter.

Return values
array

◆ get_sample_analysable()

core\analytics\analyser\users::get_sample_analysable (   $sampleid)

Returns the analysable of a sample.

Parameters
int$sampleid
Return values
core_analytics

Reimplemented from core_analytics\local\analyser\base.

◆ get_samples()

core\analytics\analyser\users::get_samples (   $sampleids)

Returns samples data from sample ids.

Parameters
int[]$sampleids
Return values
array

Reimplemented from core_analytics\local\analyser\base.

◆ get_samples_origin()

core\analytics\analyser\users::get_samples_origin ( )

Samples origin is user table.

Return values
string

Reimplemented from core_analytics\local\analyser\base.

◆ get_static_data()

core_analytics\local\analyser\base::get_static_data ( array  $contexts = [])
inherited

Returns indicator calculations as an array.

Parameters
context[]$contextsRestrict the analysis to these contexts. No context restrictions if null.
Return values
array

◆ get_target()

core_analytics\local\analyser\base::get_target ( )
inherited

Returns the analysed target.

Return values
core_analytics

◆ get_timesplittings()

core_analytics\local\analyser\base::get_timesplittings ( )
inherited

Getter for time splittings.

Return values
core_analytics

◆ get_unlabelled_data()

core_analytics\local\analyser\base::get_unlabelled_data ( array  $contexts = [])
inherited

Returns unlabelled data (prediction).

Parameters
context[]$contextsRestrict the analysis to these contexts. No context restrictions if null.
Return values
stored_file[]

◆ instantiate_indicators()

core_analytics\local\analyser\base::instantiate_indicators ( )
inherited

Instantiate the indicators.

Return values
core_analytics

◆ join_sample_user()

core\analytics\analyser\users::join_sample_user (   $sampletablealias)

Join the samples origin table with the user id table.

Parameters
string$sampletablealias
Return values
string

Reimplemented from core_analytics\local\analyser\base.

◆ one_sample_per_analysable()

static core\analytics\analyser\users::one_sample_per_analysable ( )
static

Just one sample per analysable.

Return values
bool

Reimplemented from core_analytics\local\analyser\base.

◆ order_sql()

core_analytics\local\analyser\base::order_sql ( ?string  $fieldname = null,
string  $order = 'ASC',
?string  $tablealias = null 
)
protectedinherited

Returns the order by clause.

Parameters
string | null$fieldnameThe field name
string$order'ASC' or 'DESC'
string | null$tablealiasThe table alias of the field
Return values
string

◆ potential_context_restrictions()

static core_analytics\local\analyser\base::potential_context_restrictions ( string  $query = null)
staticinherited

Returns the possible contexts used by the analyser.

This method uses separate logic for each context level because to iterate through the list of contexts calling get_context_name for each of them would be expensive in performance terms.

This generic implementation returns all the contexts in the site for the provided context level. Overwrite it for specific restrictions in your analyser.

Parameters
string | null$queryContext name filter.
Return values
int[]

◆ processes_user_data()

core\analytics\analyser\users::processes_user_data ( )

We need to delete associated data if a user requests his data to be deleted.

Return values
bool

Reimplemented from core_analytics\local\analyser\base.

◆ provided_sample_data()

core\analytics\analyser\users::provided_sample_data ( )
protected

This provides samples' user and context.

Return values
string[]

Reimplemented from core_analytics\local\analyser\base.

◆ sample_access_context()

core\analytics\analyser\users::sample_access_context (   $sampleid)

Returns the context of a sample.

Parameters
int$sampleid
Return values
context

Reimplemented from core_analytics\local\analyser\base.

◆ sample_description()

core\analytics\analyser\users::sample_description (   $sampleid,
  $contextid,
  $sampledata 
)

Returns the description of a sample.

Parameters
int$sampleid
int$contextid
array$sampledata
Return values
arrayarray(string, renderable)

Reimplemented from core_analytics\local\analyser\base.

Member Data Documentation

◆ $timesplittings

core_analytics local time_splitting base [] core_analytics\local\analyser\base::$timesplittings
protectedinherited

Time splitting methods to use.

Multiple time splitting methods during evaluation and 1 single time splitting method once the model is enabled.


The documentation for this class was generated from the following file: