The SET50 and SET100 Indices are the primary stock indices of Thailand. The constituents of both lists are companies listed on the Stock Exchange of Thailand (SET) in Bangkok.
The SET50 Index and the SET100 Index were created "to accommodate the issuing of index futures and options in the future, and to provide a benchmark of investment in the Stock Exchange of Thailand [SET]". Both indices are calculated from the stock prices of companies that are included in the SET Index, but each index consists of a subset of those stocks by a ranking based on large market capitalization, high liquidity and compliance with requirements regarding the distribution of shares to minor shareholders: those stocks ranked as the top 50 such stocks are the component stocks of the SET50 Index and those ranked as the top 100 — which also includes the top 50 — are the component stocks of the SET100 Index.
The calculation method used for these two indices is the same as that used for the SET Index, which is a market capitalization weighted index. The base dates used are 16 August 16, 1995 (SET50 Index) and 30 April 2005 (SET100 Index), which are the respective dates that the two indices were first published and were set to a base value of 1000 points. The base market value is continually adjusted to correspond to changes in the market values of the underlying securities of each index.
An index is an indirect shortcut derived from and pointing into a greater volume of values, data, information or knowledge. Index may refer to:
A database index is a data structure that improves the speed of data retrieval operations on a database table at the cost of additional writes and storage space to maintain the index data structure. Indexes are used to quickly locate data without having to search every row in a database table every time a database table is accessed. Indexes can be created using one or more columns of a database table, providing the basis for both rapid random lookups and efficient access of ordered records.
An index is a copy of select columns of data from a table that can be searched very efficiently that also includes a low-level disk block address or direct link to the complete row of data it was copied from. Some databases extend the power of indexing by letting developers create indices on functions or expressions. For example, an index could be created on upper(last_name)
, which would only store the upper case versions of the last_name
field in the index. Another option sometimes supported is the use of partial indices, where index entries are created only for those records that satisfy some conditional expression. A further aspect of flexibility is to permit indexing on user-defined functions, as well as expressions formed from an assortment of built-in functions.
In statistics and research design, an index is a composite statistic – a measure of changes in a representative group of individual data points, or in other words, a compound measure that aggregates multiple indicators. Indexes summarize and rank specific observations.
Much data in the field of social sciences is represented in various indices such as Gender Gap Index, Human Development Index or the Dow Jones Industrial Average.
Item in indexes are usually weighted equally, unless there are some reasons against it (for example, if two items reflect essentially the same aspect of a variable, they could have a weight of 0.5 each).
Constructing the items involves four steps. First, items should be selected based on their face validity, unidimensionality, the degree of specificity in which a dimension is to be measured, and their amount of variance. Items should be empirically related to one another, which leads to the second step of examining their multivariate relationships. Third, indexes scores are designed, which involves determining their score ranges and weights for the items. Finally, indexes should be validateds, which involves testing whether they can predict indicators related to the measured variable not used in their construction.
A set (pitch set, pitch-class set, set class, set form, set genus, pitch collection) in music theory, as in mathematics and general parlance, is a collection of objects. In musical contexts the term is traditionally applied most often to collections of pitches or pitch-classes, but theorists have extended its use to other types of musical entities, so that one may speak of sets of durations or timbres, for example.
A set by itself does not necessarily possess any additional structure, such as an ordering. Nevertheless, it is often musically important to consider sets that are equipped with an order relation (called segments); in such contexts, bare sets are often referred to as "unordered", for the sake of emphasis.
Two-element sets are called dyads, three-element sets trichords (occasionally "triads", though this is easily confused with the traditional meaning of the word triad). Sets of higher cardinalities are called tetrachords (or tetrads), pentachords (or pentads), hexachords (or hexads), heptachords (heptads or, sometimes, mixing Latin and Greek roots, "septachords"—e.g.,), octachords (octads), nonachords (nonads), decachords (decads), undecachords, and, finally, the dodecachord.
Set construction is the process by which a construction manager undertakes to build full scale scenery suitable for viewing by camera, as specified by a production designer or art director working in collaboration with the director of a production to create a set for a theatrical, film or television production. The set designer produces a scale model, scale drawings, paint elevations (a scale painting supplied to the scenic painter of each element that requires painting), and research about props, textures, and so on. Scale drawings typically include a groundplan, elevation, and section of the complete set, as well as more detailed drawings of individual scenic elements which, in theatrical productions, may be static, flown, or built onto scenery wagons. Models and paint elevations are frequently hand-produced, though in recent years, many Production Designers and most commercial theatres have begun producing scale drawings with the aid of computer drafting programs such as AutoCAD or Vectorworks.
In computing, associative containers refer to a group of class templates in the standard library of the C++ programming language that implement ordered associative arrays. Being templates, they can be used to store arbitrary elements, such as integers or custom classes. The following containers are defined in the current revision of the C++ standard: set
, map
, multiset
, multimap
. Each of these containers differ only on constraints placed on their elements.
The associative containers are similar to the unordered associative containers in C++ standard library, the only difference is that the unordered associative containers, as their name implies, do not order their elements.
map
and set
each key must be unique. multimap
and multiset
do not have this restriction.map
and multimap
each element is composed from a key and a mapped value. In set
and multiset
each element is key; there are no mapped values.