Skip to content

Commit

Permalink
Update typos in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosvm13 authored Dec 20, 2023
1 parent 8e58d37 commit 689100c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions docs/user-guide/advanced/Pandas_API.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@
"\n",
"| Type | Description |\n",
"| :----------------: | :------------------------------------------------------------------- |\n",
"| Dictionary | The std across each row / column with the key corresponding to the row number or column name. |"
"| Table | The std across each row / column with the key corresponding to the row number or column name. |"
]
},
{
Expand Down Expand Up @@ -729,7 +729,7 @@
"metadata": {},
"outputs": [],
"source": [
"tab.std(axis=2)"
"tab.std(axis=1)"
]
},
{
Expand Down Expand Up @@ -1987,26 +1987,26 @@
"id": "0a4abc8c",
"metadata": {},
"source": [
"### Table.add_sufix()\n",
"### Table.add_suffix()\n",
"\n",
"```\n",
"Table.add_sufix(columns)\n",
"Table.add_suffix(columns)\n",
"```\n",
"\n",
"Rename columns adding a sufix in a table and return the resulting Table object.\n",
"Rename columns adding a suffix in a table and return the resulting Table object.\n",
"\n",
"**Parameters:**\n",
"\n",
"| Name | Type | Description | Default |\n",
"| :-----: | :-------------: | :------------------------------------------------------------------ | :--------: |\n",
"| sufix | str | The string that will be concatenated with the name of the columns | _required_ |\n",
"| axis | int | Axis to add sufix on. | 0 |\n",
"| suffix | str | The string that will be concatenated with the name of the columns | _required_ |\n",
"| axis | int | Axis to add suffix on. | 0 |\n",
"\n",
"**Returns:**\n",
"\n",
"| Type | Description |\n",
"| :---: | :----------------------------------------------------------------- |\n",
"| Table | A table with the given column(s) renamed adding a sufix. |"
"| Table | A table with the given column(s) renamed adding a suffix. |"
]
},
{
Expand All @@ -2016,7 +2016,7 @@
"source": [
"**Examples:**\n",
"\n",
"The initial table to which a sufix will be added to its columns"
"The initial table to which a suffix will be added to its columns"
]
},
{
Expand Down Expand Up @@ -2044,7 +2044,7 @@
"metadata": {},
"outputs": [],
"source": [
"tab.add_sufix(sufix=\"_col\").head()"
"tab.add_suffix(suffix=\"_col\").head()"
]
},
{
Expand Down Expand Up @@ -2752,7 +2752,7 @@
"Table.count(axis=0, numeric_only=False)\n",
"```\n",
"\n",
"Returns the count of non-NA values across the given axis.\n",
"Returns the count of non null values across the given axis.\n",
"\n",
"**Parameters:**\n",
"\n",
Expand Down

0 comments on commit 689100c

Please sign in to comment.