content
large_stringlengths
3
20.5k
url
large_stringlengths
54
193
branch
large_stringclasses
4 values
source
large_stringclasses
42 values
embeddings
listlengths
384
384
score
float64
-0.21
0.65
`\_\_ `Hierarchical queries on an HDFStore `\_\_ `Counting with an HDFStore `\_\_ `Troubleshoot HDFStore exceptions `\_\_ `Setting min\_itemsize with strings `\_\_ `Using ptrepack to create a completely-sorted-index on a store `\_\_ Storing Attributes to a group node .. ipython:: python df = pd.DataFrame(np.random.rand...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/cookbook.rst
main
pandas
[ 0.008558007888495922, 0.008418083190917969, -0.016795286908745766, 0.1038728579878807, 0.034696221351623535, -0.031907737255096436, -0.019741343334317207, -0.004101992584764957, -0.04706487059593201, 0.03348621726036072, 0.04292062297463417, 0.041188474744558334, 0.042672257870435715, -0.0...
-0.097118
B)) / n std\_a = np.sqrt(np.sqrt(np.nansum(A \*\* 2)) / n) std\_b = np.sqrt(np.sqrt(np.nansum(B \*\* 2)) / n) return cov\_ab / std\_a / std\_b df = pd.DataFrame(np.random.normal(size=(100, 3))) df.corr(method=distcorr) Timedeltas ---------- The :ref:`Timedeltas ` docs. `Using timedeltas `\_\_ .. ipython:: python import...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/cookbook.rst
main
pandas
[ -0.06466897577047348, -0.03406107425689697, 0.027698928490281105, -0.03369710594415665, -0.008374521508812904, -0.03417180851101875, -0.07667256146669388, -0.036150917410850525, 0.042229630053043365, 0.03307826444506645, 0.03558966889977455, -0.04660169780254364, -0.07843624800443649, -0.0...
0.006382
.. \_text: {{ header }} ###################### Working with text data ###################### .. versionchanged:: 3.0 The inference and behavior of strings changed significantly in pandas 3.0. See the :ref:`string\_migration\_guide`. .. \_text.types: Text data types =============== There are two ways to store text data ...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/text.rst
main
pandas
[ -0.0008438739459961653, -0.02239958569407463, 0.003882798133417964, -0.00249689188785851, 0.08460638672113419, -0.06036216393113136, 0.04709639400243759, 0.023321231827139854, -0.024056199938058853, -0.014239509589970112, 0.03719262778759003, -0.0013832475524395704, -0.06193602457642555, 0...
0.022761
can then be used to clean up the columns as needed. Here we are removing leading and trailing whitespaces, lower casing all names, and replacing any remaining whitespaces with underscores: .. ipython:: python df.columns = df.columns.str.strip().str.lower().str.replace(" ", "\_") df .. note:: If you have a ``Series`` wh...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/text.rst
main
pandas
[ 0.008798637427389622, -0.039222851395606995, -0.010576511733233929, 0.02369053289294243, -0.02419484592974186, -0.07405875623226166, -0.061735231429338455, -0.0281748715788126, 0.05551055446267128, 0.002953031100332737, 0.008102839812636375, 0.08629303425550461, -0.11172954738140106, -0.05...
-0.059157
The ``replace`` method also accepts a compiled regular expression object from :func:`re.compile` as a pattern. All flags should be included in the compiled regular expression object. .. ipython:: python import re regex\_pat = re.compile(r"^.a|dog", flags=re.IGNORECASE) s3.str.replace(regex\_pat, "XX-XX ", regex=True) I...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/text.rst
main
pandas
[ -0.019029563292860985, 0.029392164200544357, 0.030052296817302704, 0.01094465795904398, -0.013504560105502605, -0.01323086116462946, -0.04170902818441391, -0.02594660222530365, 0.00790289044380188, 0.027079017832875252, 0.0018743877299129963, 0.009888017550110817, -0.008524380624294281, -0...
-0.022087
the union of these indexes will be used as the basis for the final concatenation: .. ipython:: python u.loc[[3]] v.loc[[-1, 0]] s.str.cat([u.loc[[3]], v.loc[[-1, 0]]], join="right", na\_rep="-") Indexing with ``.str`` ====================== .. \_text.indexing: You can use ``[]`` notation to directly index by position l...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/text.rst
main
pandas
[ -0.014005796983838081, 0.00401201331987977, 0.044520456343889236, -0.005470162257552147, -0.03168266639113426, -0.00858145859092474, 0.03578919172286987, -0.047687411308288574, 0.0060034263879060745, -0.03409641608595848, 0.03416366130113602, 0.03304712101817131, -0.008319485001266003, 0.0...
0.013934
(starts from 0). .. ipython:: python pd.Index(["a1a2", "b1", "c1"]).str.extractall(two\_groups) pd.Series(["a1a2", "b1", "c1"], dtype="str").str.extractall(two\_groups) Testing for strings that match or contain a pattern =================================================== You can check whether elements contain a patter...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/text.rst
main
pandas
[ -0.030807876959443092, 0.009524683468043804, 0.02518363855779171, -0.02981266751885414, 0.021471144631505013, 0.03562558442354202, 0.0020092357881367207, -0.08429642766714096, 0.0165424682199955, -0.06591307371854782, -0.007313678506761789, 0.015441229566931725, -0.06507986783981323, -0.05...
-0.013588
variants ====================================== There are four :class:`StringDtype` variants that are available to users, controlled by the ``storage`` and ``na\_value`` parameters of :class:`StringDtype`. At runtime, these can be checked via the :attr:`StringDtype.storage` and :attr:`StringDtype.na\_value` attributes....
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/text.rst
main
pandas
[ -0.02854033187031746, 0.013195152394473553, -0.07826093584299088, 0.02209778130054474, -0.01576688513159752, -0.08992696553468704, 0.05402889475226402, 0.01741763949394226, -0.0360320545732975, -0.03696398809552193, 0.062121015042066574, 0.027206221595406532, 0.02450687624514103, 0.0227206...
0.083665
column for each regex capture group :meth:`~Series.str.extractall`,Call ``re.findall`` on each element returning DataFrame with one row for each match and one column for each regex capture group :meth:`~Series.str.len`,Compute string lengths :meth:`~Series.str.strip`,Equivalent to ``str.strip`` :meth:`~Series.str.rstri...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/text.rst
main
pandas
[ 0.013851585797965527, -0.012585402466356754, -0.055468734353780746, -0.037625569850206375, 0.050033923238515854, -0.04054468497633934, -0.03955582156777382, 0.0679880827665329, -0.015201413072645664, -0.036657948046922684, 0.016328437253832817, 0.0007477301405742764, -0.05987253785133362, ...
-0.067209
.. \_advanced: {{ header }} \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* MultiIndex / advanced indexing \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* This section covers :ref:`indexing with a MultiIndex ` and :ref:`other advanced indexing features `. See the :ref:`Indexing and Selecting D...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/advanced.rst
main
pandas
[ -0.030382590368390083, 0.012602063827216625, 0.031489260494709015, 0.04266829788684845, 0.05971037223935127, -0.02158558927476406, -0.0257322546094656, 0.004086288157850504, -0.05576266348361969, 0.03346134349703789, 0.016016479581594467, -0.03898291289806366, 0.004722022917121649, -0.0003...
0.115303
from using tuples as atomic labels on an axis: .. ipython:: python pd.Series(np.random.randn(8), index=tuples) The reason that the ``MultiIndex`` matters is that it can allow you to do grouping, selection, and reshaping operations as we will describe below and in subsequent areas of the documentation. As you will see i...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/advanced.rst
main
pandas
[ 0.010694971308112144, -0.031916387379169464, -0.017832854762673378, 0.0003892300883308053, 0.047970954328775406, -0.038674816489219666, 0.015137648209929466, -0.009361721575260162, -0.016190018504858017, -0.04326121509075165, 0.010959861800074577, -0.02219550311565399, 0.007427707314491272, ...
0.057868
a slice of tuples. .. ipython:: python df.loc[("baz", "two"):("qux", "one")] df.loc[("baz", "two"):"foo"] Passing a list of labels or tuples works similar to reindexing: .. ipython:: python df.loc[[("bar", "two"), ("qux", "one")]] .. note:: It is important to note that tuples and lists are not treated identically in pa...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/advanced.rst
main
pandas
[ -0.04575890302658081, -0.07819432020187378, 0.010939933359622955, -0.0364932082593441, 0.04143880307674408, -0.011299964040517807, 0.02841428853571415, -0.06725753843784332, 0.024927834048867226, -0.01103942934423685, 0.0026964833959937096, 0.03816085308790207, -0.0441223569214344, -0.0383...
0.053757
data at a particular level of a ``MultiIndex`` easier. .. ipython:: python df df.xs("one", level="second") .. ipython:: python # using the slicers df.loc[(slice(None), "one"), :] You can also select on the columns with ``xs``, by providing the axis argument. .. ipython:: python df = df.T df.xs("one", level="second", ax...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/advanced.rst
main
pandas
[ 0.01303098350763321, -0.0674784928560257, 0.049518242478370667, -0.06229763478040695, 0.08534232527017593, -0.04707394167780876, 0.0608355775475502, -0.044161681085824966, 0.033540621399879456, 0.0007697289693169296, 0.01763731800019741, 0.0038152839988470078, 0.034165866672992706, -0.0022...
-0.061745
"L2"]) s.sort\_index(level="L1") s.sort\_index(level="L2") On higher dimensional objects, you can sort any of the other axes by level if they have a ``MultiIndex``: .. ipython:: python df.T.sort\_index(level=1, axis=1) Indexing will work even if the data are not sorted, but will be rather inefficient (and show a ``Perf...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/advanced.rst
main
pandas
[ 0.05079790949821472, -0.11620506644248962, 0.03269057348370552, -0.03835488110780716, 0.08444609493017197, -0.03318743407726288, -0.012836700305342674, -0.07514186948537827, -0.007496498990803957, 0.02394128404557705, -0.010475150309503078, 0.05049429088830948, -0.017880046740174294, 0.056...
-0.129746
will preserve the index nature as well. .. ipython:: python df2.groupby(level=0, observed=True).sum() df2.groupby(level=0, observed=True).sum().index Reindexing operations will return a resulting index based on the type of the passed indexer. Passing a list will return a plain-old ``Index``; indexing with a ``Categoric...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/advanced.rst
main
pandas
[ -0.012984470464289188, -0.06990236788988113, 0.03512052446603775, 0.06617020815610886, 0.021358629688620567, -0.01704702153801918, 0.027356809005141258, -0.13258661329746246, 0.03144622966647148, -0.027743691578507423, 0.03362942114472389, 0.009775206446647644, -0.08928228169679642, -0.024...
-0.003726
``bins`` set to a fixed number, to generate the bins. Then, we pass the values of ``.categories`` as the ``bins`` argument in subsequent calls to :func:`cut`, supplying new data which will be binned into the same bins. .. ipython:: python pd.cut([0, 3, 5, 1], bins=c.categories) Any value which falls outside all bins wi...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/advanced.rst
main
pandas
[ 0.04357808083295822, 0.0199197418987751, -0.03195684403181076, -0.0009007373591884971, -0.053048379719257355, -0.030018378049135208, -0.039746303111314774, -0.03367643430829048, -0.027331184595823288, 0.0082871587947011, 0.018280241638422012, -0.10695932060480118, -0.02292105183005333, 0.0...
0.058443
with standard Python sequence slicing in which the slice endpoint is not inclusive, label-based slicing in pandas \*\*is inclusive\*\*. The primary reason for this is that it is often not possible to easily determine the "successor" or next element after a particular label in an index. For example, consider the followi...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/advanced.rst
main
pandas
[ -0.07668955624103546, 0.044289812445640564, 0.03828376531600952, -0.013876112177968025, 0.05576947331428528, 0.005785651970654726, 0.024414073675870895, -0.037517670542001724, 0.03750305250287056, -0.027974480763077736, 0.01808040775358677, -0.0126213813200593, -0.09085017442703247, 0.0346...
0.044691
.. \_visualization: {{ header }} \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* Chart visualization \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* .. note:: The examples below assume that you're using `Jupyter `\_. This section demonstrates visualization through charting. For information on visualization of tabular data please see the...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/visualization.rst
main
pandas
[ 0.08871614187955856, -0.01335679180920124, -0.002060118829831481, -0.08680946379899979, 0.06729996204376221, -0.045470792800188065, 0.004085805267095566, 0.011662484146654606, -0.017958341166377068, 0.04405609145760536, -0.004438540432602167, -0.0502953939139843, 0.0021499530412256718, -0....
0.01582
"c", "d"]) @savefig bar\_plot\_multi\_ex.png df2.plot.bar(); To produce a stacked bar plot, pass ``stacked=True``: .. ipython:: python :suppress: plt.close("all") plt.figure() .. ipython:: python @savefig bar\_plot\_stacked\_ex.png df2.plot.bar(stacked=True); To get horizontal bar plots, use the ``barh`` method: .. ipy...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/visualization.rst
main
pandas
[ 0.03108251839876175, -0.05532027408480644, -0.023568637669086456, -0.05840678513050079, 0.004601224325597286, -0.028857208788394928, -0.05475692078471184, 0.08632834255695343, 0.014688911847770214, 0.028407152742147446, 0.018988890573382378, -0.05695216730237007, 0.05636579170823097, -0.00...
-0.081128
= pd.DataFrame(np.random.rand(10, 5)) plt.figure(); @savefig box\_plot\_ex.png bp = df.boxplot() You can create a stratified boxplot using the ``by`` keyword argument to create groupings. For instance, .. ipython:: python :suppress: plt.close("all") np.random.seed(123456) .. ipython:: python :okwarning: df = pd.DataFra...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/visualization.rst
main
pandas
[ 0.05552709475159645, -0.042440690100193024, -0.00965847261250019, 0.015341994352638721, 0.08840109407901764, 0.026639314368367195, -0.03768712282180786, -0.0745440348982811, -0.01725021004676819, 0.0030794828198850155, -0.007758398540318012, 0.006279683206230402, 0.0012129233218729496, -0....
-0.096896
method specifying target ``ax``. It is recommended to specify ``color`` and ``label`` keywords to distinguish each groups. .. ipython:: python :okwarning: ax = df.plot.scatter(x="a", y="b", color="DarkBlue", label="Group 1") @savefig scatter\_plot\_repeated.png df.plot.scatter(x="c", y="d", color="DarkGreen", label="Gr...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/visualization.rst
main
pandas
[ 0.06032808497548103, -0.06650970131158829, -0.028445564210414886, -0.008997914381325245, 0.11859633028507233, 0.032975759357213974, 0.06628815084695816, -0.061569128185510635, 0.012523498386144638, 0.03483382239937782, 0.07536978274583817, -0.028835313394665718, 0.021636588498950005, -0.00...
-0.005722
each pie plots by default; specify ``legend=False`` to hide it. .. ipython:: python :suppress: np.random.seed(123456) plt.figure() .. ipython:: python df = pd.DataFrame( 3 \* np.random.rand(4, 2), index=["a", "b", "c", "d"], columns=["x", "y"] ) @savefig df\_pie\_plot.png df.plot.pie(subplots=True, figsize=(8, 4)); .. ...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/visualization.rst
main
pandas
[ 0.026184333488345146, 0.014025893993675709, 0.015003998763859272, 0.008295749314129353, 0.026227742433547974, 0.027066221460700035, 0.014872771687805653, -0.031852323561906815, 0.03425060212612152, -0.014917885884642601, 0.03516007959842682, -0.0890190377831459, -0.026749636977910995, -0.0...
-0.036768
andrews\_curves.png andrews\_curves(data, "Name"); .. \_visualization.parallel\_coordinates: Parallel coordinates ~~~~~~~~~~~~~~~~~~~~ Parallel coordinates is a plotting technique for plotting multivariate data, see the `Wikipedia entry `\_\_ for an introduction. Parallel coordinates allows one to see clusters in data ...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/visualization.rst
main
pandas
[ -0.0013628575252369046, -0.10967717319726944, -0.06590191274881363, -0.009395154193043709, 0.061583757400512695, -0.03345591574907303, -0.011532370001077652, -0.019811175763607025, 0.08040264993906021, -0.007243399508297443, 0.10904759913682938, 0.011048464104533195, -0.03002847358584404, ...
0.112792
package `Radviz `\_\_ for more information. \*\*Note\*\*: The "Iris" dataset is available `here `\_\_. .. ipython:: python from pandas.plotting import radviz data = pd.read\_csv("data/iris.data") plt.figure(); @savefig radviz.png radviz(data, "Name"); .. ipython:: python :suppress: plt.close("all") .. \_visualization.f...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/visualization.rst
main
pandas
[ 0.0008687904919497669, 0.02484779804944992, -0.046770501881837845, 0.00007910135900601745, 0.0605296865105629, -0.07556864619255066, -0.009322118945419788, 0.053482018411159515, -0.015087184496223927, 0.046015121042728424, -0.004769634455442429, -0.0029858502093702555, 0.015378561802208424, ...
-0.026692
purposes. Here is the default behavior, notice how the x-axis tick labeling is performed: .. ipython:: python plt.figure(); @savefig ser\_plot\_suppress.png df["A"].plot(); .. ipython:: python :suppress: plt.close("all") Using the ``x\_compat`` parameter, you can suppress this behavior: .. ipython:: python plt.figure()...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/visualization.rst
main
pandas
[ -0.006917903199791908, -0.005644115153700113, -0.036983340978622437, 0.008287818171083927, 0.11047288030385971, -0.026547806337475777, 0.018577134236693382, 0.012748324312269688, 0.08331527560949326, 0.023440947756171227, 0.07367455214262009, 0.037568457424640656, 0.004363792948424816, -0....
-0.006426
formats: \* As a :class:`DataFrame` or ``dict`` of errors with column names matching the ``columns`` attribute of the plotting :class:`DataFrame` or matching the ``name`` attribute of the :class:`Series`. \* As a ``str`` indicating which of the columns of plotting :class:`DataFrame` contain the error values. \* As raw ...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/visualization.rst
main
pandas
[ 0.03670958802103996, -0.04289728403091431, -0.019928747788071632, -0.00680827721953392, 0.023378733545541763, -0.05258794128894806, -0.031107980757951736, -0.03323749452829361, -0.04064502939581871, -0.020908856764435768, 0.0062753972597420216, -0.009292948991060257, 0.0067320093512535095, ...
0.017844
large number of columns is that it can be difficult to distinguish some series due to repetition in the default colors. To remedy this, ``DataFrame`` plotting supports the use of the ``colormap`` argument, which accepts either a Matplotlib `colormap `\_\_ or a string that is a name of a colormap registered with Matplot...
https://github.com/pandas-dev/pandas/blob/main//doc/source/user_guide/visualization.rst
main
pandas
[ 0.062405966222286224, -0.06526151299476624, -0.07757700979709625, -0.04254932329058647, 0.05664822459220886, -0.033760540187358856, -0.031073255464434624, -0.042352549731731415, 0.0372677817940712, -0.058381713926792145, -0.09051784873008728, -0.011191613040864468, -0.0029672838281840086, ...
-0.013101
# What to do when things go wrong First, have a look at the common problems listed below. If you can figure it out from these notes, it will be quicker than asking for help. Check that you have the latest version of any packages that look relevant. Unfortunately it's not always easy to figure out what packages are rele...
https://github.com/jupyter/notebook/blob/main//docs/source/troubleshooting.md
main
jupyter
[ 0.05391933396458626, -0.043934669345617294, 0.06072553992271423, -0.0857950747013092, -0.00686295423656702, 0.049000807106494904, -0.08817512542009354, 0.025567103177309036, -0.021781619638204575, 0.051861345767974854, 0.01225161924958229, -0.08561625331640244, 0.026050545275211334, 0.0454...
-0.037934
In these situations, take a close look at your environment structure and ensure all packages required by your notebook's code are installed in the correct environment. If you need to run the kernel from different environments than your Notebook server, check out [IPython's documentation](https://ipython.readthedocs.io/...
https://github.com/jupyter/notebook/blob/main//docs/source/troubleshooting.md
main
jupyter
[ 0.01450693141669035, -0.06753213703632355, 0.01185571774840355, -0.051735688000917435, 0.06413597613573074, -0.07595638930797577, -0.0759812593460083, 0.019438378512859344, -0.020270004868507385, -0.041417863219976425, 0.05443418771028519, -0.01744409278035164, -0.03640558198094368, 0.0177...
0.028343
extension - typically resulting in `FileNotFoundError` exceptions. ## This Worked An Hour Ago The Jupyter stack is very complex and rightfully so, there's a lot going on. On occasion you might find the system working perfectly well, then, suddenly, you can't get past a certain cell due to `import` failures. In these si...
https://github.com/jupyter/notebook/blob/main//docs/source/troubleshooting.md
main
jupyter
[ -0.038892462849617004, 0.0029655226971954107, 0.028793994337320328, -0.02628607302904129, 0.08343840390443802, -0.037040796130895615, -0.03620629012584686, 0.053435470908880234, -0.03022780828177929, -0.0022089648991823196, 0.06961198151111603, -0.016181226819753647, 0.030872760340571404, ...
0.004514
# Migrating \_Updated 2023-05-17\_ ```{warning} Version 7 of the Jupyter Notebook application might break your extensions or other customizations. Please read this page to find out if you need to take any actions to ensure a smooth, uninterrupted experience. ``` A major upgrade to the Jupyter Notebook interface is comi...
https://github.com/jupyter/notebook/blob/main//docs/source/migrate_to_notebook7.md
main
jupyter
[ -0.0127454474568367, -0.017684441059827805, 0.10214891284704208, -0.044529564678668976, 0.054872479289770126, 0.009531293995678425, -0.07521288096904755, 0.02880793996155262, -0.12241576611995697, 0.018206968903541565, 0.017375804483890533, -0.021788667887449265, -0.03805083781480789, 0.00...
0.001357
# User interface components When opening bug reports or sending emails to the Jupyter mailing list, it is useful to know the names of different UI components so that other developers and users have an easier time helping you diagnose your problems. This section will familiarize you with the names of UI elements within ...
https://github.com/jupyter/notebook/blob/main//docs/source/ui_components.md
main
jupyter
[ -0.05634120851755142, -0.0007370952516794205, 0.04982645809650421, 0.00759141007438302, 0.022304996848106384, 0.00047908624401316047, -0.03351996839046478, 0.04705888032913208, 0.011381964199244976, 0.014148256741464138, 0.01673288084566593, -0.03730945289134979, 0.016618825495243073, 0.01...
0.070337
(htmlnotebook)= # The Jupyter Notebook ## Introduction \*\*Jupyter Notebook\*\* is a notebook authoring application, under the [Project Jupyter](https://docs.jupyter.org/en/latest/) umbrella. Built on the power of the [computational notebook format](https://docs.jupyter.org/en/latest/#what-is-a-notebook), \*\*Jupyter N...
https://github.com/jupyter/notebook/blob/main//docs/source/notebook.md
main
jupyter
[ -0.04673270508646965, -0.00012401117419358343, 0.0018027344485744834, -0.01544077880680561, -0.007778158411383629, -0.041878435760736465, -0.0523485466837883, 0.06859064847230911, 0.03179629519581795, 0.020114103332161903, -0.020835356786847115, -0.00724999513477087, 0.048078544437885284, ...
0.16899
your data anywhere else—and as it's open source, other people can check that we're being honest about this. You can also use Jupyter remotely: your company or university might run the server for you, for instance. If you want to work with sensitive data in those cases, talk to your IT or data protection staff about it....
https://github.com/jupyter/notebook/blob/main//docs/source/notebook.md
main
jupyter
[ -0.017490684986114502, 0.0426674522459507, -0.038227856159210205, -0.06074512377381325, -0.003905691672116518, -0.021028589457273483, -0.04912832751870155, 0.026662345975637436, 0.03079938143491745, -0.008030482567846775, 0.06969643384218216, 0.034392546862363815, 0.016491349786520004, -0....
0.083821
the notebook uses the IPython kernel, you can also see this connection data by running the `%connect\_info` {ref}`magic `, which will print the same ID information along with other details. You can then, for example, manually start a Qt console connected to the \_same\_ kernel from the command line, by passing a portio...
https://github.com/jupyter/notebook/blob/main//docs/source/notebook.md
main
jupyter
[ -0.06992541253566742, -0.024889184162020683, -0.09928872436285019, 0.02818124368786812, -0.028225606307387352, 0.024345099925994873, -0.02371903322637081, 0.0778120905160904, 0.05995582044124603, -0.015500251203775406, 0.02723238803446293, -0.01897505670785904, 0.02537655644118786, 0.02037...
0.05147
specify which parts of the text should be emphasized (italics), bold, form lists, etc. If you want to provide structure for your document, you can use markdown headings. Markdown headings consist of 1 to 6 hash # signs `#` followed by a space and the title of your section. The markdown heading will be converted to a cl...
https://github.com/jupyter/notebook/blob/main//docs/source/notebook.md
main
jupyter
[ -0.06959367543458939, 0.019517337903380394, 0.014116061851382256, 0.015979904681444168, 0.022208260372281075, 0.012551040388643742, -0.0014216586714610457, 0.01127298828214407, 0.07868655025959015, 0.03455021604895592, -0.07011041790246964, 0.08663301914930344, 0.06388520449399948, 0.00858...
0.143457
: In command mode, you can navigate around the notebook using keyboard shortcuts. - {kbd}`Enter`: Edit mode : In edit mode, you can edit text in cells. For the full list of available shortcuts, click {guilabel}`Help`, {guilabel}`Keyboard Shortcuts` in the notebook menus. ## Searching Jupyter Notebook has an advanced bu...
https://github.com/jupyter/notebook/blob/main//docs/source/notebook.md
main
jupyter
[ -0.022870907559990883, 0.043622639030218124, -0.021242253482341766, 0.02114662155508995, 0.01354878582060337, 0.010553468950092793, -0.03889518231153488, 0.05557091534137726, 0.06403623521327972, 0.029556050896644592, 0.07296255975961685, 0.020351042971014977, 0.06083516776561737, -0.05266...
0.088434
# Jupyter Notebook Documentation Welcome to the \*\*Jupyter Notebook\*\* documentation site. \*\*Jupyter Notebook\*\* is a simplified notebook authoring application, and is a part of [Project Jupyter](https://docs.jupyter.org/en/latest/), a large umbrella project centered around the goal of providing tools (and [standa...
https://github.com/jupyter/notebook/blob/main//docs/source/index.md
main
jupyter
[ -0.07965051382780075, 0.026875680312514305, 0.00695011205971241, -0.013321580365300179, -0.023852843791246414, -0.03946388512849808, -0.061232421547174454, 0.0342821404337883, 0.029716607183218002, 0.052486177533864975, 0.006542850751429796, 0.00417421804741025, 0.05333981290459633, -0.018...
0.189273
# New features in Notebook 7 This document describes the new features in Notebook 7 as originally mentioned in the related Jupyter Enhancement Proposal [JEP 79][jep 79]. ```{contents} Table of Contents :depth: 3 :local: ``` ## Debugger Notebook 7 includes a new debugger that allows you to step through your code cell by...
https://github.com/jupyter/notebook/blob/main//docs/source/notebook_7_features.md
main
jupyter
[ -0.07207848131656647, -0.005109117366373539, -0.05985397472977638, 0.0061522615142166615, -0.03201097249984741, 0.019734546542167664, -0.05856648087501526, 0.018519602715969086, 0.001168947434052825, 0.04094936326146126, 0.02927973121404648, -0.01585029624402523, -0.02440149337053299, -0.0...
0.158109
you can use the following commands: ```bash pip install jupyter-lsp ``` ```bash conda install -c conda-forge jupyter-lsp ``` Popular extensions like `nbgrader` and `RISE` have already been ported to work with Notebook 7. ### nbgrader ```{note} The nbgrader extension is still under active development and a version compa...
https://github.com/jupyter/notebook/blob/main//docs/source/notebook_7_features.md
main
jupyter
[ -0.06968763470649719, 0.0015507742064073682, -0.012583751231431961, -0.02857913449406624, -0.02792350947856903, 0.016336271539330482, -0.08235852420330048, 0.03900779038667679, -0.038101889193058014, -0.02423938177525997, 0.028309036046266556, -0.015376708470284939, -0.024683674797415733, ...
0.048189
# Applying Custom CSS To apply custom CSS, you can add a `/custom/custom.css` file in the jupyter `config` directory. You can find the path, `~/.jupyter`, to this directory by running `jupyter --paths`. There you can create a folder named `custom` and create a `custom.css` file within the folder. ## Jupyter Styling You...
https://github.com/jupyter/notebook/blob/main//docs/source/custom_css.md
main
jupyter
[ -0.03454214334487915, 0.08076108992099762, 0.020489877089858055, -0.0032278692815452814, -0.018085191026329994, 0.04938798025250435, -0.008290773257613182, 0.04566775634884834, -0.04665924608707428, 0.04605644941329956, -0.050721630454063416, -0.010380147956311703, 0.07956535369157791, -0....
-0.034078
# Simultaneous usage of different versions of Notebook 7 and the Classic Notebook UI With the release of Notebook 7, the classic Notebook UI is now available as a Jupyter Server extension, NbClassic. This means that NbClassic can be installed independently of Notebook 7, and can be also installed alongside Notebook 7. ...
https://github.com/jupyter/notebook/blob/main//docs/source/migrating/multiple-interfaces.md
main
jupyter
[ -0.13148458302021027, 0.021585790440440178, 0.011613418348133564, -0.028048446401953697, -0.03990613669157028, 0.08763695508241653, -0.08848658949136734, 0.06137514114379883, -0.03434843197464943, -0.03464394435286522, -0.020644396543502808, 0.033845946192741394, -0.01671559177339077, 0.02...
0.147296
a Jupyter Server extension, indicated Jupyter Server will be available. This provides an additional way to view the NbClassic frontend. You would be able to manually enable the extension when running an instance of Jupyter Server, `> jupyter server --ServerApp.jpserver\_extensions="nbclassic=True"`, which will provide ...
https://github.com/jupyter/notebook/blob/main//docs/source/migrating/multiple-interfaces.md
main
jupyter
[ -0.003725985065102577, -0.005361400544643402, -0.007956769317388535, 0.00015067378990352154, -0.005598063580691814, 0.0035220312420278788, -0.05412906035780907, 0.0656173899769783, -0.018456321209669113, -0.007970333099365234, -0.09282712638378143, 0.036132972687482834, -0.03734784573316574,...
0.100688
# Custom themes in Notebook 7 In Notebook 7, the way to create custom themes has changed. This means that custom themes developed for Notebook 6 or earlier will not work with Notebook 7 and upwards. This is for example the case for community contributed themes such as [jupyter-themes](https://github.com/dunovank/jupyte...
https://github.com/jupyter/notebook/blob/main//docs/source/migrating/custom-themes.md
main
jupyter
[ 0.0181789081543684, 0.042233046144247055, 0.04684453085064888, -0.0279859472066164, 0.01925404742360115, 0.06027589365839958, -0.05575552582740784, -0.005038395524024963, -0.004557652398943901, -0.0058461446315050125, -0.05539441481232643, 0.01549591962248087, -0.015289044938981533, -0.020...
0.016198
# Server Extensions in Notebook 7 Notebook 7 is now based on Jupyter Server, which is a new server application that allows to run multiple Jupyter applications (e.g. Notebook, JupyterLab, NBClassic, etc.) on the same server. This means that Notebook 7 is able to reuse many of the existing server extensions from the Jup...
https://github.com/jupyter/notebook/blob/main//docs/source/migrating/server-extensions.md
main
jupyter
[ -0.04713433235883713, -0.055323049426078796, 0.0020858386997133493, -0.041970930993556976, -0.0017502374248579144, -0.020852280780673027, -0.0685843676328659, 0.01029884722083807, -0.0357525609433651, -0.03272683545947075, 0.02114267833530903, 0.03940160572528839, 0.006711709313094616, -0....
0.143616
# Server Imports in Notebook 7 Notebook 7 is now based on Jupyter Server, which lets users run multiple Jupyter frontends (e.g. Notebook, JupyterLab, NBClassic, etc.) on the same server. Prior to Notebook 7, the Classic Notebook server included the server modules in the `notebook` package. This means it was possible to...
https://github.com/jupyter/notebook/blob/main//docs/source/migrating/server-imports.md
main
jupyter
[ -0.04218805581331253, -0.06740042567253113, -0.03322529047727585, -0.019848614931106567, -0.015539895743131638, 0.0015303690452128649, -0.014584642834961414, -0.02142150141298771, -0.03137180954217911, 0.001466551679186523, 0.05251035466790199, 0.03781837970018387, 0.06739526242017746, -0....
0.029679
# Frontend Extensions in Notebook 7 ```{warning} Any extension developed for Notebook \< 7 or NbClassic will not be compatible with Notebook 7 and upwards. Some extensions like nbgrader have already been ported. We invite you to check if the extensions you are using have already been ported. ``` You can check the follo...
https://github.com/jupyter/notebook/blob/main//docs/source/migrating/frontend-extensions.md
main
jupyter
[ -0.07660867273807526, -0.023120900616049767, 0.018320264294743538, -0.040652401745319366, -0.009870641864836216, 0.004430205095559359, -0.06035153940320015, 0.05106869712471962, -0.07733134180307388, -0.04197792336344719, -0.005206019151955843, -0.02292502112686634, -0.021562056615948677, ...
0.134288
(frontend-extensions)= # Custom front-end extensions This describes the basic steps to write a TypeScript extension for the Jupyter notebook front-end. This allows you to customize the behaviour of the various pages like the dashboard, the notebook, or the text editor. Starting with Notebook 7, front-end extensions for...
https://github.com/jupyter/notebook/blob/main//docs/source/extending/frontend_extensions.md
main
jupyter
[ -0.06363226473331451, -0.010357702150940895, 0.026992317289114, 0.0045930687338113785, 0.006933150347322226, 0.05194981023669243, -0.006452991161495447, 0.1378912478685379, -0.09554813802242279, 0.013428823091089725, -0.038676340132951736, 0.008744544349610806, -0.024735279381275177, 0.008...
0.159858
# Extending the Notebook ```{warning} Please note that the extension system for Notebook 7 is radically different from the one used in Notebook 6.5.x and earlier. If you are looking for information on how to extend the classic Notebook, please refer to the [documentation for NbClassic](https://nbclassic.readthedocs.io/...
https://github.com/jupyter/notebook/blob/main//docs/source/extending/index.md
main
jupyter
[ -0.03368024528026581, 0.014849619008600712, 0.02170988731086254, -0.03352096304297447, -0.046625711023807526, -0.0037893583066761494, -0.08070509880781174, 0.09163898974657059, -0.040053658187389374, 0.019604694098234177, 0.00869057048112154, 0.08426336944103241, -0.02306337282061577, 0.00...
0.116393
(configuration-overview)= # Configuration Overview Beyond the default configuration settings, you can configure a rich array of options to suit your workflow. Here are areas that are commonly configured when using Jupyter Notebook: > - {ref}`Jupyter's common configuration system ` > - {ref}`Jupyter Server ` > - {ref}`N...
https://github.com/jupyter/notebook/blob/main//docs/source/configuring/config_overview.md
main
jupyter
[ 0.024764034897089005, 0.03033045493066311, 0.0029033140745013952, -0.038765862584114075, -0.05652287229895592, 0.0089840954169631, -0.07959388941526413, 0.041832949966192245, -0.05837935954332352, -0.01984444633126259, -0.02664615772664547, -0.015595214441418648, 0.07435434311628342, -0.07...
0.05296
# Managing plugins Notebook 7 uses the same extension system as JupyterLab. An extension can provide multiple plugins. ```{note} See the [JupyterLab documentation](https://jupyterlab.readthedocs.io/en/latest/user/extensions.html) to learn more about the extension system. ``` ## Examples ### Disabling the download butto...
https://github.com/jupyter/notebook/blob/main//docs/source/configuring/plugins.md
main
jupyter
[ -0.03202126547694206, 0.052075549960136414, -0.009018923155963421, 0.018591806292533875, 0.0014838827773928642, 0.012276160530745983, -0.0015757587971165776, 0.014894044026732445, -0.006358789280056953, 0.028944024816155434, 0.03868303820490837, 0.02852638252079487, 0.011227074079215527, -...
0.102308
# Interface Customization Multiple elements in the Notebook interface can be customized via the Settings Editor. ## Layout By default some widgets are displayed in pre-defined parts of the user interface, which are often called "areas" or "regions". For example the table of contents will be displayed in the `left` area...
https://github.com/jupyter/notebook/blob/main//docs/source/configuring/interface_customization.md
main
jupyter
[ -0.027252085506916046, 0.050896044820547104, -0.024890471249818802, 0.038108665496110916, 0.008259755559265614, 0.06011205166578293, -0.06866439431905746, 0.03739464655518532, -0.025834986940026283, 0.07165119051933289, -0.011034545488655567, 0.08770552277565002, -0.005238513927906752, -0....
0.015789
# Exit and shutdown flow (tui) This document describes how exit, shutdown, and interruption work in the Rust TUI (`codex-rs/tui`). It is intended for Codex developers and Codex itself when reasoning about future exit/shutdown changes. This doc replaces earlier separate history and design notes. High-level history is su...
https://github.com/openai/codex/blob/main//docs/exit-confirmation-prompt-design.md
main
openai-codex
[ -0.07043099403381348, 0.03882193937897682, 0.0044969357550144196, 0.02807328663766384, 0.08331076800823212, -0.057537421584129333, 0.012355317361652851, 0.017289401963353157, 0.028050756081938744, -0.00973479449748993, -0.033239029347896576, 0.0245794877409935, -0.04596627131104469, -0.068...
0.270917
on second press. ## History (high level) Codex has historically mixed "exit immediately" and "shutdown-first" across quit gestures, largely due to incremental changes and regressions in state tracking. This doc reflects the current unified, shutdown-first approach. See PR #8936 for the detailed history and rationale.
https://github.com/openai/codex/blob/main//docs/exit-confirmation-prompt-design.md
main
openai-codex
[ 0.04334040731191635, -0.004172989167273045, 0.06826508045196533, 0.01244718860834837, 0.039991118013858795, 0.04478459060192108, -0.04359221085906029, 0.006911884527653456, 0.06475584208965302, 0.022518685087561607, 0.014546582475304604, 0.09747147560119629, -0.05704959109425545, -0.045959...
0.067292
## Installing & building ### System requirements | Requirement | Details | | --------------------------- | --------------------------------------------------------------- | | Operating systems | macOS 12+, Ubuntu 20.04+/Debian 10+, or Windows 11 \*\*via WSL2\*\* | | Git (optional, recommended) | 2.23+ for built-in PR h...
https://github.com/openai/codex/blob/main//docs/install.md
main
openai-codex
[ -0.01817067340016365, -0.014979341998696327, -0.03316039964556694, -0.005369309335947037, 0.07094746083021164, -0.03164319321513176, -0.013556888327002525, 0.05928866192698479, 0.006288494449108839, 0.05456603690981865, 0.05542619898915291, -0.05115867033600807, 0.0112842358648777, -0.0110...
0.069725
# TUI Alternate Screen and Terminal Multiplexers ## Overview This document explains the design decision behind Codex's alternate screen handling, particularly in terminal multiplexers like Zellij. This addresses a fundamental conflict between fullscreen TUI behavior and terminal scrollback history preservation. ## The ...
https://github.com/openai/codex/blob/main//docs/tui-alternate-screen.md
main
openai-codex
[ -0.04280857741832733, -0.0009120237082242966, 0.018100231885910034, -0.03932584077119827, 0.0275033600628376, -0.04805062711238861, 0.016688132658600807, 0.024258069694042206, 0.027397898957133293, 0.017617659643292427, 0.026583556085824966, 0.01063813827931881, 0.04610670357942581, -0.027...
0.099336
to add a config option:\*\* Not viable—Zellij maintainers explicitly chose this behavior to follow the spec 3. \*\*Disable alternate screen unconditionally:\*\* Would degrade UX for non-Zellij users ### Transcript Pager Codex's transcript pager (opened with Ctrl+T) provides an alternative way to review conversation his...
https://github.com/openai/codex/blob/main//docs/tui-alternate-screen.md
main
openai-codex
[ -0.07023221254348755, 0.012555785477161407, -0.040008701384067535, -0.013401953503489494, 0.004997935611754656, -0.05844312533736229, 0.03685067594051361, 0.028875283896923065, -0.04136849194765091, -0.023822546005249023, 0.06831732392311096, 0.009883067570626736, 0.05869070813059807, 0.00...
0.118069
# Configuration For basic configuration instructions, see [this documentation](https://developers.openai.com/codex/config-basic). For advanced configuration instructions, see [this documentation](https://developers.openai.com/codex/config-advanced). For a full configuration reference, see [this documentation](https://d...
https://github.com/openai/codex/blob/main//docs/config.md
main
openai-codex
[ 0.0024513269308954477, -0.08052746206521988, -0.030272826552391052, 0.04809313639998436, 0.042898498475551605, -0.01696670986711979, 0.005877248011529446, -0.022143622860312462, 0.0254391860216856, -0.02612399309873581, 0.043109696358442307, 0.03290208801627159, 0.021722868084907532, 0.041...
0.121307
# Request user input overlay (TUI) This note documents the TUI overlay used to gather answers for `RequestUserInputEvent`. ## Overview The overlay renders one question at a time and collects: - A single selected option (when options exist). - Freeform notes (always available). When options are present, notes are stored...
https://github.com/openai/codex/blob/main//docs/tui-request-user-input.md
main
openai-codex
[ -0.09386089444160461, -0.048534344881772995, -0.008674586191773415, 0.018108952790498734, 0.0296424999833107, 0.023941639810800552, 0.017007697373628616, 0.053206879645586014, 0.03984012082219124, -0.01735728047788143, 0.022058745846152306, 0.017017293721437454, -0.006080238148570061, -0.0...
0.173988
# Individual Contributor License Agreement (v1.0, OpenAI) \_Based on the Apache Software Foundation Individual CLA v 2.2.\_ By commenting \*\*“I have read the CLA Document and I hereby sign the CLA”\*\* on a Pull Request, \*\*you (“Contributor”) agree to the following terms\*\* for any past and future “Contributions” s...
https://github.com/openai/codex/blob/main//docs/CLA.md
main
openai-codex
[ -0.1029074415564537, 0.014060900546610355, -0.04786992445588112, -0.059128180146217346, 0.05922554433345795, -0.030197281390428543, 0.025813579559326172, -0.008019980043172836, 0.06464110314846039, 0.005618019495159388, 0.025243917480111122, -0.05025521293282509, 0.0432383269071579, -0.028...
0.104319
## Contributing This project is under active development and the code will likely change pretty significantly. \*\*At the moment, we are generally accepting external contributions only for bugs fixes.\*\* If you want to add a new feature or change the behavior of an existing one, please open an issue proposing the feat...
https://github.com/openai/codex/blob/main//docs/contributing.md
main
openai-codex
[ -0.0768086165189743, -0.0461421012878418, 0.04145357757806778, -0.02063441090285778, 0.040712736546993256, 0.027881817892193794, -0.04003916680812836, 0.02947644144296646, -0.08399687707424164, 0.06196175143122673, -0.017979849129915237, -0.09282516688108444, -0.0000560186781513039, 0.0066...
0.052272
an issue or PR with improvements. ### Getting help If you run into problems setting up the project, would like feedback on an idea, or just want to say \_hi\_ - please open a Discussion topic or jump into the relevant issue. We are happy to help. Together we can make Codex CLI an incredible tool. \*\*Happy hacking!\*\*...
https://github.com/openai/codex/blob/main//docs/contributing.md
main
openai-codex
[ -0.1218097060918808, 0.018857765942811966, -0.03913867101073265, -0.08270184695720673, -0.0027863667346537113, -0.050633978098630905, 0.001273761736229062, 0.047140806913375854, 0.018875006586313248, 0.007938580587506294, 0.008834638632833958, -0.07445986568927765, 0.06485560536384583, -0....
0.066388
# Chat Composer state machine (TUI) This note documents the `ChatComposer` input state machine and the paste-related behavior added for Windows terminals. Primary implementations: - `codex-rs/tui/src/bottom\_pane/chat\_composer.rs` Paste-burst detector: - `codex-rs/tui/src/bottom\_pane/paste\_burst.rs` ## What problem ...
https://github.com/openai/codex/blob/main//docs/tui-chat-composer.md
main
openai-codex
[ -0.04853440821170807, -0.0676514282822609, 0.049083516001701355, 0.051995158195495605, -0.04147560894489288, 0.01935461536049843, 0.007544462103396654, -0.01632368192076683, 0.09620136767625809, 0.013894697651267052, -0.02860463783144951, -0.053466781973838806, -0.027390453964471817, -0.01...
0.126915
bursts. Holding the first character in that case can feel like dropped input. The composer therefore distinguishes: - \*\*ASCII path\*\*: allow holding the first fast char (`PasteBurst::on\_plain\_char`). - \*\*non-ASCII path\*\*: never hold the first char (`PasteBurst::on\_plain\_char\_no\_hold`), but still allow burs...
https://github.com/openai/codex/blob/main//docs/tui-chat-composer.md
main
openai-codex
[ -0.03692853823304176, -0.06466099619865417, 0.050154104828834534, 0.026672884821891785, -0.028358953073620796, -0.005112538579851389, 0.029431939125061035, -0.007387757766991854, 0.1800168752670288, -0.045655664056539536, 0.08796259760856628, -0.014857713133096695, 0.0022625792771577835, -...
0.16835
and calls `extend\_window(now)` so a slightly-late Enter keeps behaving like “newline” rather than “submit”. Both are disabled inside slash-command context (command popup is active or the first line begins with `/`) so Enter keeps its normal “submit/execute” semantics while composing commands. ### Non-char keys / Ctrl+...
https://github.com/openai/codex/blob/main//docs/tui-chat-composer.md
main
openai-codex
[ -0.016105113551020622, -0.0578702874481678, 0.030890516936779022, 0.05193314701318741, -0.06999937444925308, 0.005965906195342541, 0.004684957675635815, 0.0023124993313103914, 0.0638463944196701, 0.017381342127919197, 0.03997624292969704, -0.04200469329953194, 0.012700681574642658, -0.0307...
0.064542
[[setup]] = Set up Elasticsearch [partintro] -- This section includes information on how to setup Elasticsearch and get it running, including: \* Downloading \* Installing \* Starting \* Configuring [[supported-platforms]] [float] == Supported platforms The matrix of officially supported operating systems and JVMs is a...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/setup.asciidoc
6.2
elasticsearch-6-2
[ 0.07685336470603943, 0.00100803654640913, 0.002041512168943882, -0.03310200944542885, -0.006133903283625841, 0.00369154941290617, -0.13943369686603546, 0.034409165382385254, -0.04032322019338608, 0.01253216527402401, -0.06907595694065094, -0.03788483142852783, -0.014079674147069454, 0.0562...
0.035986
[[analysis]] = Analysis [partintro] -- \_Analysis\_ is the process of converting text, like the body of any email, into \_tokens\_ or \_terms\_ which are added to the inverted index for searching. Analysis is performed by an <> which can be either a built-in analyzer or a <> analyzer defined per index. [float] == Index...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/analysis.asciidoc
6.2
elasticsearch-6-2
[ -0.016796693205833435, 0.09036554396152496, 0.03987811505794525, 0.07798084616661072, 0.05340933799743652, -0.062317803502082825, 0.03077848069369793, -0.04632839933037758, 0.03804045915603638, -0.01804795116186142, 0.03754609078168869, 0.006187567953020334, 0.041566137224435806, -0.022785...
0.15567
[[index-modules]] = Index Modules [partintro] -- Index Modules are modules created per index and control all aspects related to an index. [float] [[index-modules-settings]] == Index Settings Index level settings can be set per-index. Settings may be: \_static\_:: They can only be set at index creation time or on a <>. ...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/index-modules.asciidoc
6.2
elasticsearch-6-2
[ 0.039798323065042496, 0.02859085239470005, 0.008176419883966446, 0.12197878211736679, 0.012309012934565544, -0.029080165550112724, 0.014204170554876328, -0.04596653953194618, -0.019605206325650215, -0.0488971509039402, 0.004703198559582233, 0.0020118870306760073, 0.005475190468132496, -0.0...
0.110284
memory and time proportional to `from + size` and this limits that memory. See <> or <> for a more efficient alternative to raising this. `index.max\_inner\_result\_window`:: The maximum value of `from + size` for inner hits definition and top hits aggregations to this index. Defaults to `100`. Inner hits and top hits ...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/index-modules.asciidoc
6.2
elasticsearch-6-2
[ -0.016881417483091354, 0.03002203442156315, -0.06725161522626877, 0.0963236391544342, 0.014565611258149147, -0.03440847620368004, -0.040415965020656586, 0.11854007095098495, 0.07925911247730255, 0.056848157197237015, -0.048932578414678574, 0.07469271123409271, 0.008974658325314522, -0.0444...
0.134594
are logged. <>:: Configure the type of filesystem used to access shard data. <>:: Control over the transaction log and background flush operations. -- include::index-modules/analysis.asciidoc[] include::index-modules/allocation.asciidoc[] include::index-modules/mapper.asciidoc[] include::index-modules/merge.asciidoc[] ...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/index-modules.asciidoc
6.2
elasticsearch-6-2
[ 0.07812425494194031, 0.01818891614675522, -0.08756478130817413, 0.04921156167984009, 0.006597934756428003, -0.060123104602098465, 0.01846427470445633, -0.011813750490546227, 0.07375261187553406, 0.011107031255960464, 0.09145889431238174, 0.03438130393624306, -0.05598728358745575, -0.009743...
0.172228
[[query-dsl]] = Query DSL [partintro] -- Elasticsearch provides a full Query DSL (Domain Specific Language) based on JSON to define queries. Think of the Query DSL as an AST (Abstract Syntax Tree) of queries, consisting of two types of clauses: Leaf query clauses:: Leaf query clauses look for a particular value in a pa...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/query-dsl.asciidoc
6.2
elasticsearch-6-2
[ -0.00866174791008234, 0.06484789401292801, 0.042187612503767014, 0.045613646507263184, 0.022463209927082062, -0.04582690820097923, 0.007387317717075348, 0.012323793955147266, 0.06723126769065857, -0.0566859133541584, -0.037368860095739365, -0.01763106696307659, -0.0036316681653261185, -0.0...
0.116528
[[search]] = Search APIs [partintro] -- Most search APIs are <>, with the exception of the <> endpoints. [float] [[search-routing]] == Routing When executing a search, it will be broadcast to all the index/indices shards (round robin between replicas). Which shards will be searched on can be controlled by providing the...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/search.asciidoc
6.2
elasticsearch-6-2
[ 0.007936917245388031, 0.04974238574504852, 0.0069971452467143536, 0.045690711587667465, 0.011780488304793835, -0.04147427901625633, -0.04122399911284447, -0.017566215246915817, 0.08912511169910431, -0.049239225685596466, -0.04703877493739128, 0.00711507024243474, 0.052082665264606476, -0.0...
0.10343
that start after the change is made. [float] [[search-concurrency-and-parallelism]] == Search concurrency and parallelism By default Elasticsearch doesn't reject any search requests based on the number of shards the request hits. While Elasticsearch will optimize the search execution on the coordinating node a large nu...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/search.asciidoc
6.2
elasticsearch-6-2
[ 0.05545223876833916, 0.0018855428788810968, 0.0408320315182209, 0.03400468826293945, -0.013974721543490887, -0.012421779334545135, -0.09418780356645584, 0.0008396801422350109, 0.08139882981777191, 0.0163510013371706, -0.0034648750443011522, 0.0014796877512708306, 0.028761867433786392, -0.0...
0.030178
[[setup-upgrade]] = Upgrade Elasticsearch [partintro] -- Elasticsearch can usually be upgraded using a <> process so upgrading does not interrupt service. However, you might need to <> indices created in older versions. Upgrades across major versions prior to 6.0 require a <>. When upgrading to a new version of Elastic...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/upgrade.asciidoc
6.2
elasticsearch-6-2
[ 0.03750806674361229, -0.041507378220558167, 0.0420348234474659, -0.0286069605499506, 0.05126582458615303, -0.012514670379459858, -0.023016799241304398, -0.031190404668450356, -0.07138756662607193, 0.07491926848888397, -0.04554653540253639, 0.007514514960348606, -0.04709655046463013, -0.102...
0.089946
["appendix",role="exclude",id="redirects"] = Deleted pages The following pages have moved or been deleted. [role="exclude",id="cluster-nodes-shutdown"] === Nodes shutdown The `\_shutdown` API has been removed. Instead, setup Elasticsearch to run as a service (see <>, <>, or <>) or use the `-p` command line option to <>...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/redirects.asciidoc
6.2
elasticsearch-6-2
[ 0.010921885259449482, 0.05979403108358383, 0.055681440979242325, 0.01015226636081934, 0.03984639421105385, 0.01038169115781784, -0.06961489468812943, -0.102452352643013, -0.004197576083242893, 0.05872213467955589, 0.013037397526204586, 0.009995093569159508, 0.04307552054524422, 0.010216081...
0.054518
a query in ``query context'' and as a filter in ``filter context'' (see <>). [role="exclude",id="query-dsl-has-child-filter"] === Has Child Filter The `has\_child` filter has been replaced by the <>. It behaves as a query in ``query context'' and as a filter in ``filter context'' (see <>). [role="exclude",id="query-dsl...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/redirects.asciidoc
6.2
elasticsearch-6-2
[ -0.06164463981986046, 0.07029212266206741, 0.043701767921447754, 0.07635840028524399, 0.05499803274869919, -0.05792972445487976, 0.07693742215633392, -0.06336140632629395, 0.03806477040052414, -0.07203613221645355, 0.03431553766131401, -0.016838237643241882, 0.05561777576804161, -0.0256206...
-0.029129
later allowing to narrow the navigation to a specific partition. In Elasticsearch, `facets` are also the name of a feature that allowed to compute these summaries. `facets` have been replaced by <> in Elasticsearch 1.0, which are a superset of facets. [role="exclude",id="search-facets-filter-facet"] === Filter Facet Fa...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/redirects.asciidoc
6.2
elasticsearch-6-2
[ 0.06934532523155212, 0.11683827638626099, 0.08863698691129684, 0.04443958401679993, 0.06874201446771622, 0.02772846259176731, 0.008143476210534573, -0.08152620494365692, -0.0062730214558541775, -0.024124804884195328, -0.002506544580683112, -0.05274757742881775, 0.05877487361431122, -0.0247...
-0.02221
Reference See the {painless}/painless-api-reference.html[Painless API Reference] in the guide to the {painless}/index.html[Painless Scripting Language].
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/redirects.asciidoc
6.2
elasticsearch-6-2
[ -0.03496680408716202, 0.02074931189417839, -0.07732249051332474, 0.05156582593917847, -0.024166151881217957, -0.06254695355892181, -0.015609531663358212, 0.05603756755590439, 0.0003226564731448889, -0.06958848237991333, 0.044272057712078094, 0.03852109611034393, 0.05108007788658142, 0.0100...
0.182671
[[cat]] = cat APIs [partintro] -- ["float",id="intro"] == Introduction JSON is great... for computers. Even if it's pretty-printed, trying to find relationships in the data is tedious. Human eyes, especially when looking at an ssh terminal, need compact and aligned text. The cat API aims to meet this need. All the cat ...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/cat.asciidoc
6.2
elasticsearch-6-2
[ 0.002584469970315695, 0.10552769899368286, -0.05676546320319176, 0.04960542544722557, -0.05361194908618927, -0.023274969309568405, -0.043531112372875214, 0.017577655613422394, -0.03704904019832611, -0.06585103273391724, -0.01435029786080122, -0.07955671846866608, 0.033498942852020264, 0.00...
0.079428
"docs.count": "0", "docs.deleted": "0", "store.size": "650b" } ] -------------------------------------------------- // NOTCONSOLE [float] [[sort]] === Sort Each of the commands accepts a query string parameter `s` which sorts the table by the columns specified as the parameter value. Columns are specified either by nam...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/cat.asciidoc
6.2
elasticsearch-6-2
[ -0.038181789219379425, -0.008216147311031818, -0.04314790293574333, 0.04477431997656822, -0.061816371977329254, -0.013865435495972633, -0.027507957071065903, 0.06358695775270462, 0.06250560283660889, 0.11501441150903702, 0.08154477179050446, 0.049800947308540344, 0.06942268460988998, -0.04...
0.033291
[[mapping]] = Mapping [partintro] -- Mapping is the process of defining how a document, and the fields it contains, are stored and indexed. For instance, use mappings to define: \* which string fields should be treated as full text fields. \* which fields contain numbers, dates, or geolocations. \* whether the values o...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/mapping.asciidoc
6.2
elasticsearch-6-2
[ 0.06610745191574097, 0.06835581362247467, 0.04552280530333519, 0.018322324380278587, 0.02512950822710991, -0.044481076300144196, 0.014950798824429512, 0.047708988189697266, -0.011052502319216728, -0.008878552354872227, -0.04027084633708, 0.03128120303153992, -0.014257089234888554, -0.06659...
0.17241
<> rules can be configured to customise the mapping that is used for new fields. [float] == Explicit mappings You know more about your data than Elasticsearch can guess, so while dynamic mapping can be useful to get started, at some point you will want to specify your own explicit mappings. You can create field mapping...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/mapping.asciidoc
6.2
elasticsearch-6-2
[ -0.026840511709451675, 0.06978297233581543, 0.08284733444452286, 0.07615480571985245, -0.0156832467764616, 0.00765186408534646, -0.05225647985935211, -0.0006945853237994015, 0.05093780532479286, 0.014433261007070541, -0.09933042526245117, -0.007002081722021103, 0.03460830822587013, 0.02664...
0.019581
[glossary] [[glossary]] = Glossary of terms [glossary] [[glossary-analysis]] analysis :: Analysis is the process of converting <> to <>. Depending on which analyzer is used, these phrases: `FOO BAR`, `Foo-Bar`, `foo,bar` will probably all result in the terms `foo` and `bar`. These terms are what is actually stored in t...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/glossary.asciidoc
6.2
elasticsearch-6-2
[ -0.03638051450252533, 0.027409689500927925, -0.01569444313645363, 0.06356576830148697, 0.002743950579315424, 0.0052812122739851475, 0.030266575515270233, -0.025126468390226364, 0.05352294445037842, -0.007478007115423679, 0.006152465008199215, -0.011834909208118916, 0.048578713089227676, -0...
0.14094
<> has a mapping, which defines a <>, plus a number of index-wide settings. + A mapping can either be defined explicitly, or it will be generated automatically when a document is indexed. [[glossary-node]] node :: A node is a running instance of Elasticsearch which belongs to a <>. Multiple nodes can be started on a si...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/glossary.asciidoc
6.2
elasticsearch-6-2
[ -0.01810929924249649, -0.03311615809798241, 0.030593087896704674, 0.04498560354113579, -0.05486428737640381, 0.01474771834909916, -0.04959673807024956, -0.07722083479166031, 0.06626014411449432, 0.04337579384446144, -0.007518543396145105, -0.00810590386390686, 0.062431078404188156, -0.0850...
0.099195
automatically from one node to another in the case of node failure, or the addition of new nodes. [[glossary-source\_field]] source field :: By default, the JSON document that you index will be stored in the `\_source` field and will be returned by all get and search requests. This allows you access to the original obj...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/glossary.asciidoc
6.2
elasticsearch-6-2
[ -0.08325869590044022, 0.04614373669028282, 0.0420076921582222, 0.06838679313659668, 0.0028622483368963003, -0.012250772677361965, 0.03184084594249725, -0.06300724297761917, 0.04598401114344597, 0.03557296097278595, -0.03006817400455475, -0.033125534653663635, 0.02507980726659298, -0.060899...
0.050283
[[ingest]] = Ingest Node [partintro] -- Use an ingest node to pre-process documents before the actual document indexing happens. The ingest node intercepts bulk and index requests, it applies transformations, and it then passes the documents back to the index or bulk APIs. All nodes enable ingest by default, so any nod...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/ingest.asciidoc
6.2
elasticsearch-6-2
[ 0.009504222311079502, 0.0737055316567421, 0.044152457267045975, 0.07986997812986374, 0.04234904423356056, -0.050579823553562164, -0.020340237766504288, -0.03035973384976387, 0.08526129275560379, 0.0051706405356526375, -0.023429928347468376, 0.02503993920981884, -0.005875079892575741, -0.04...
0.141485
[[cluster]] = Cluster APIs [partintro] -- ["float",id="cluster-nodes"] == Node specification Most cluster level APIs allow to specify which nodes to execute on (for example, getting the node stats for a node). Nodes can be identified in the APIs either using their internal node id, the node name, address, custom attrib...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/cluster.asciidoc
6.2
elasticsearch-6-2
[ -0.027780544012784958, 0.02707950584590435, -0.03013526275753975, 0.08830772340297699, 0.07156850397586823, -0.017981551587581635, -0.025170255452394485, -0.022474367171525955, -0.01002547424286604, -0.03844768926501274, -0.02455800212919712, -0.09698551148176193, 0.03977391496300697, -0.0...
0.164158
[[docs]] = Document APIs [partintro] -- This section starts with a short introduction to Elasticsearch's <>, followed by a detailed description of the following CRUD APIs: .Single document APIs \* <> \* <> \* <> \* <> .Multi-document APIs \* <> \* <> \* <> \* <> \* <> NOTE: All CRUD APIs are single-index APIs. The `ind...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/docs.asciidoc
6.2
elasticsearch-6-2
[ -0.028027983382344246, 0.037527330219745636, -0.001197735546156764, 0.040048036724328995, 0.03566139191389084, -0.029984990134835243, -0.059597715735435486, 0.020172955468297005, 0.09050638973712921, 0.04181281477212906, 0.008512992411851883, -0.013571355491876602, 0.06930754333734512, -0....
0.144057
[[how-to]] = How To [partintro] -- Elasticsearch ships with defaults which are intended to give a good out of the box experience. Full text search, highlighting, aggregations, and indexing should all just work without the user having to change anything. Once you better understand how you want to use Elasticsearch, howe...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/how-to.asciidoc
6.2
elasticsearch-6-2
[ 0.08332634717226028, 0.06555012613534927, -0.006495837587863207, 0.07337197661399841, 0.01762336492538452, 0.03163709118962288, -0.04178239777684212, 0.028367850929498672, 0.0064844838343560696, -0.036081720143556595, -0.019332000985741615, -0.009449978359043598, -0.010486559011042118, -0....
0.09552
[[modules]] = Modules [partintro] -- This section contains modules responsible for various aspects of the functionality in Elasticsearch. Each module has settings which may be: \_static\_:: These settings must be set at the node level, either in the `elasticsearch.yml` file, or as an environment variable or on the comm...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/modules.asciidoc
6.2
elasticsearch-6-2
[ 0.037937797605991364, 0.029573243111371994, 0.014437485486268997, 0.06652211397886276, 0.029018335044384003, -0.010167942382395267, -0.07449866831302643, -0.0008398725185543299, 0.011432758532464504, 0.010098103433847427, -0.044734805822372437, -0.008215890266001225, 0.05216517299413681, -...
0.164451
[[getting-started]] = Getting Started [partintro] -- Elasticsearch is a highly scalable open-source full-text search and analytics engine. It allows you to store, search, and analyze big volumes of data quickly and in near real time. It is generally used as the underlying engine/technology that powers applications that...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/getting-started.asciidoc
6.2
elasticsearch-6-2
[ 0.02089936099946499, 0.026528365910053253, -0.05286779999732971, 0.030127782374620438, 0.03530137985944748, 0.0056779212318360806, -0.000995040056295693, 0.07811077684164047, -0.0011545445304363966, 0.009667479433119297, -0.0351850800216198, -0.0055732401087880135, 0.035117559134960175, -0...
0.2383
is set up to join the cluster by its name. Make sure that you don't reuse the same cluster names in different environments, otherwise you might end up with nodes joining the wrong cluster. For instance you could use `logging-dev`, `logging-stage`, and `logging-prod` for the development, staging, and production clusters...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/getting-started.asciidoc
6.2
elasticsearch-6-2
[ 0.06266775727272034, -0.004410470835864544, -0.03135671839118004, 0.09262160211801529, 0.06042790785431862, -0.02275661565363407, -0.018426261842250824, -0.03695618733763695, 0.05728432163596153, 0.0056641725823283195, -0.057708580046892166, -0.07119946926832199, 0.06831078976392746, -0.01...
0.17127
a single index of a billion documents taking up 1TB of disk space may not fit on the disk of a single node or may be too slow to serve search requests from a single node alone. To solve this problem, Elasticsearch provides the ability to subdivide your index into multiple pieces called shards. When you create an index,...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/getting-started.asciidoc
6.2
elasticsearch-6-2
[ 0.05631477013230324, 0.009829606860876083, 0.056029144674539566, 0.06538157165050507, 0.030569156631827354, 0.008188637904822826, -0.09425091743469238, -0.01912931725382805, 0.133024662733078, 0.02622043341398239, -0.061374373733997345, 0.04249235615134239, 0.05582748353481293, -0.02838405...
0.112781
found on http://docs.oracle.com/javase/8/docs/technotes/guides/install/install\_overview.html[Oracle's website]. Suffice to say, before you install Elasticsearch, please check your Java version first by running (and then install/upgrade accordingly if needed): [source,sh] -----------------------------------------------...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/getting-started.asciidoc
6.2
elasticsearch-6-2
[ 0.0018262581434100866, 0.03640741854906082, 0.040127307176589966, -0.03887772187590599, 0.008044252172112465, 0.017344307154417038, -0.0819023922085762, 0.06633029878139496, -0.018061621114611626, 0.030997324734926224, -0.06073610857129097, -0.03721575438976288, -0.020443443208932877, 0.00...
0.087729
[2016-09-16T14:17:51,968][INFO ][o.e.p.PluginsService ] [6-bjhwl] loaded plugin [mapper-murmur3] [2016-09-16T14:17:53,521][INFO ][o.e.n.Node ] [6-bjhwl] initialized [2016-09-16T14:17:53,521][INFO ][o.e.n.Node ] [6-bjhwl] starting ... [2016-09-16T14:17:53,671][INFO ][o.e.t.TransportService ] [6-bjhwl] publish\_address {...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/getting-started.asciidoc
6.2
elasticsearch-6-2
[ 0.047313567250967026, 0.04056107997894287, -0.03981393575668335, -0.03146952763199806, -0.0144977867603302, -0.0741904079914093, -0.036865707486867905, -0.056199800223112106, -0.022757060825824738, 0.030568214133381844, 0.009598114527761936, 0.017765359953045845, -0.03317222744226456, -0.0...
0.105141
not available for whatever reason (cluster is partially functional) \*\*Note:\*\* When a cluster is red, it will continue to serve search requests from the available shards but you will likely need to fix it ASAP since there are unassigned shards. Also from the above response, we can see a total of 1 node and that we h...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/getting-started.asciidoc
6.2
elasticsearch-6-2
[ 0.022740472108125687, -0.03416223078966141, 0.027682553976774216, 0.0885726734995842, 0.051217496395111084, -0.0021436407696455717, -0.09794379025697708, -0.04085308313369751, 0.09326573461294174, -0.017126306891441345, -0.04582647979259491, -0.03517114743590355, 0.06386321038007736, -0.02...
0.101801
2, "successful" : 1, "failed" : 0 }, "\_seq\_no" : 0, "\_primary\_term" : 1 } -------------------------------------------------- // TESTRESPONSE[s/"\_seq\_no" : 0/"\_seq\_no" : $body.\_seq\_no/ s/"\_primary\_term" : 1/"\_primary\_term" : $body.\_primary\_term/] From the above, we can see that a new customer document wa...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/getting-started.asciidoc
6.2
elasticsearch-6-2
[ -0.03212616592645645, 0.03587987273931503, 0.02747294306755066, 0.0717567652463913, -0.002768273465335369, -0.011621532030403614, -0.013937163166701794, -0.028937270864844322, 0.07372421771287918, 0.0046094609424471855, 0.08864080160856247, -0.0907030925154686, 0.06433296948671341, -0.0637...
0.104874
ID, a new document will be indexed and the existing document(s) already in the index remains untouched. [source,js] -------------------------------------------------- PUT /customer/\_doc/2?pretty { "name": "Jane Doe" } -------------------------------------------------- // CONSOLE // TEST[continued] The above indexes a ...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/getting-started.asciidoc
6.2
elasticsearch-6-2
[ -0.08747135102748871, 0.0861390084028244, 0.057753778994083405, 0.09015439450740814, 0.07096822559833527, -0.011148292571306229, -0.05010157823562622, -0.034022606909275055, 0.14876200258731842, 0.01103484258055687, -0.028126487508416176, 0.018584968522191048, 0.01807553693652153, -0.04735...
0.096575
{"update":{"\_id":"1"}} {"doc": { "name": "John Doe becomes Jane Doe" } } {"delete":{"\_id":"2"}} -------------------------------------------------- // CONSOLE // TEST[continued] Note above that for the delete action, there is no corresponding source document after it since deletes only require the ID of the document t...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/getting-started.asciidoc
6.2
elasticsearch-6-2
[ -0.1340339481830597, 0.033685654401779175, 0.04677482694387436, 0.0427064523100853, 0.042901765555143356, -0.05437365174293518, -0.0028581086080521345, -0.026778241619467735, 0.10032941401004791, 0.030907923355698586, 0.029380010440945625, -0.0031952077988535166, 0.02789977937936783, -0.05...
0.085331
[ { "\_index" : "bank", "\_type" : "\_doc", "\_id" : "0", "sort": [0], "\_score" : null, "\_source" : {"account\_number":0,"balance":16623,"firstname":"Bradshaw","lastname":"Mckenzie","age":29,"gender":"F","address":"244 Columbus Place","employer":"Euron","email":"bradshawmckenzie@euron.com","city":"Hobucken","state":"...
https://github.com/elastic/elasticsearch/blob/6.2//docs/reference/getting-started.asciidoc
6.2
elasticsearch-6-2
[ -0.006513772998005152, 0.10496074706315994, 0.02165110409259796, 0.039335623383522034, -0.004122978542000055, -0.005585215520113707, 0.03249623253941536, -0.016025234013795853, 0.0531051829457283, 0.01892481930553913, -0.03488241508603096, -0.04687747731804848, 0.0026023187674582005, -0.03...
0.045893