Skip to content

Commit 9fee3c3

Browse files
committed
fix typo
1 parent 9a77090 commit 9fee3c3

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

README.rst

+1-11
Original file line numberDiff line numberDiff line change
@@ -150,17 +150,6 @@ Fit a Model
150150

151151
To build and train a model in nampy, follow these steps:
152152

153-
Simple Python Code Block Example
154-
=================================
155-
156-
Below is a simple Python code block:
157-
158-
.. code-block:: python
159-
160-
print("Hello, world!")
161-
162-
163-
164153
1. **Load the Data:**
165154

166155
Before you start building a model, it's essential to load and prepare your data. In this example, we'll use the California Housing dataset as a sample. The data should be organized in a Pandas DataFrame, where each column represents a feature, and the target variable is added to the DataFrame.
@@ -170,6 +159,7 @@ Below is a simple Python code block:
170159
from sklearn.datasets import fetch_california_housing
171160
import pandas as pd
172161
from nampy.models.NAM import NAM
162+
173163
# Load a dataset (e.g., California Housing dataset)
174164
housing = fetch_california_housing(as_frame=True)
175165
# Create a Pandas DataFrame from the dataset

0 commit comments

Comments
 (0)